KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejbca > core > model > ca > caadmin > CADoesntExistsException


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 package org.ejbca.core.model.ca.caadmin;
15
16 import org.ejbca.core.EjbcaException;
17
18
19 /**
20  * An exception thrown when someone tries to change a CA that doesn't already exits
21  *
22  * @author Philip Vendil
23  * @version $Id: CADoesntExistsException.java,v 1.1 2006/01/17 20:28:05 anatom Exp $
24  */

25 public class CADoesntExistsException extends EjbcaException {
26     
27     /**
28      * Creates a new instance of <code>CADoesntExistsException</code> without detail message.
29      */

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

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

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