KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejbca > ui > web > admin > configuration > AdminExistsException


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  * AdminExistsException.java
16  *
17  * Created on den 28 mars 2002, 16:47
18  */

19 package org.ejbca.ui.web.admin.configuration;
20
21 /**
22  * An exception thown when trying to add a user to the database that already exists.
23  *
24  * @author Philip Vendil
25  */

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

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

40     public AdminExistsException(String JavaDoc msg) {
41         super(msg);
42     }
43 }
44
Popular Tags