AuthExceptionpublic class AuthException extends javax.security.auth.message.AuthException A generic authentication exception. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public AuthException()Constructs a AuthException with no detail message. A detail
message is a String that describes this particular exception.
super();
| public AuthException(String msg)Constructs a AuthException with the specified detail message.
A detail message is a String that describes this particular
exception.
super(msg);
|
|