KickJava   Java API By Example, From Geeks To Geeks.

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


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  * ExtendedCAServiceNotActiveException.java
16  *
17  * Created on 17 august 2003, 11:27
18  */

19
20 package org.ejbca.core.model.ca.caadmin.extendedcaservices;
21
22
23 public class ExtendedCAServiceNotActiveException extends java.lang.Exception JavaDoc {
24     
25     /**
26      * Creates a new instance of <code>ExtendedCAServiceNotActiveException</code> without detail message.
27      */

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

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

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