KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > security > auth > login > AccountException


1 /*
2  * @(#)AccountException.java 1.3 04/02/03
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package javax.security.auth.login;
9
10 /**
11  * A generic account exception.
12  *
13  * @version 1.3, 02/03/04
14  * @since 1.5
15  */

16 public class AccountException extends LoginException JavaDoc {
17
18     private static final long serialVersionUID = -2112878680072211787L;
19
20     /**
21      * Constructs a AccountException with no detail message. A detail
22      * message is a String that describes this particular exception.
23      */

24     public AccountException() {
25     super();
26     }
27
28     /**
29      * Constructs a AccountException with the specified detail message.
30      * A detail message is a String that describes this particular
31      * exception.
32      *
33      * <p>
34      *
35      * @param msg the detail message.
36      */

37     public AccountException(String JavaDoc msg) {
38     super(msg);
39     }
40 }
41
42
Popular Tags