KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejbca > core > model > hardtoken > HardTokenExistsException


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  * HardTokenExistsException.java
16  *
17  * Created on 20 januari 2003, 21:29
18  */

19
20 package org.ejbca.core.model.hardtoken;
21
22 /**
23  * An exception thrown when someone tries to add a hard token that already exits
24  *
25  * @author Philip Vendil
26  * @version $Id: HardTokenExistsException.java,v 1.2 2006/02/08 07:31:49 anatom Exp $
27  */

28 public class HardTokenExistsException extends java.lang.Exception JavaDoc {
29     
30     /**
31      * Creates a new instance of <code>HardTokenExistsException</code> without detail message.
32      */

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

42     public HardTokenExistsException(String JavaDoc msg) {
43         super(msg);
44     }
45 }
46
Popular Tags