Package javax.security.auth.message
Class AuthException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.security.GeneralSecurityException
-
- javax.security.auth.login.LoginException
-
- javax.security.auth.message.AuthException
-
- All Implemented Interfaces:
java.io.Serializable
public class AuthException extends javax.security.auth.login.LoginException
A generic authentication exception.
- Since:
- Dec 5, 2005
- See Also:
LoginException
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
The serialVersionUID
-
Constructor Summary
Constructors Constructor Description AuthException()
Constructs an AuthException with no detail message.AuthException(java.lang.String msg)
Constructs an AuthException with the specified detail message.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
The serialVersionUID- See Also:
- Constant Field Values
-
-
Constructor Detail
-
AuthException
public AuthException()
Constructs an AuthException with no detail message. A detail message is a String that describes this particular exception.
-
AuthException
public AuthException(java.lang.String msg)
Constructs an AuthException with the specified detail message. A detail message is a String that describes this particular exception.- Parameters:
msg
- the detail message.
-
-