KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejbca > core > model > ca > caadmin > extendedcaservices > ExtendedCAServiceRequestException


1 /*************************************************************************
2  * *
3  * EJBCA: The OpenSource Certificate Authority *
4  * *
5  * This software is free software; you can redistribute it and/or *
6  * modify it under the terms of the GNU Lesser General Public *
7  * License as published by the Free Software Foundation; either *
8  * version 2.1 of the License, or any later version. *
9  * *
10  * See terms of license at gnu.org. *
11  * *
12  *************************************************************************/

13  
14 /*
15  * IllegalExtendedCAServiceRequestException.java
16  *
17  */

18
19 package org.ejbca.core.model.ca.caadmin.extendedcaservices;
20
21 /** Error processign the extended CA Sevrice request
22  *
23  */

24 public class ExtendedCAServiceRequestException extends java.lang.Exception JavaDoc {
25     
26     /**
27      * Creates a new instance of <code>ExtendedCAServiceRequestException</code> without detail message.
28      */

29     public ExtendedCAServiceRequestException() {
30         super();
31     }
32         
33     /**
34      * Constructs an instance of <code>ExtendedCAServiceRequestException</code> with the specified detail message.
35      * @param msg the detail message.
36      */

37     public ExtendedCAServiceRequestException(String JavaDoc msg) {
38         super(msg);
39     }
40
41     /**
42      * Constructs an instance of <code>ExtendedCAServiceRequestException</code> with the specified cause.
43      * @param msg the detail message.
44      */

45     public ExtendedCAServiceRequestException(Exception JavaDoc e) {
46         super(e);
47     }
48 }
49
Popular Tags