KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejbca > core > model > ca > AuthLoginException


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;
15
16 import org.ejbca.core.EjbcaException;
17
18
19
20 /**
21  * Authentication error due to wrong credentials of user object. To authenticate a user the user
22  * must have valid credentials, i.e. password.
23  *
24  * @version $Id: AuthLoginException.java,v 1.1 2006/01/17 20:30:56 anatom Exp $
25  */

26 public class AuthLoginException extends EjbcaException {
27     /**
28      * Constructor used to create exception with an errormessage. Calls the same constructor in
29      * baseclass <code>Exception</code>.
30      *
31      * @param message Human redable error message, can not be NULL.
32      */

33     public AuthLoginException(String JavaDoc message) {
34         super(message);
35     }
36 }
37
Popular Tags