LoginExceptionpublic class LoginException extends GeneralSecurityException This is the basic login exception. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public LoginException()Constructs a LoginException with no detail message. A detail
message is a String that describes this particular exception.
super();
| public LoginException(String msg)Constructs a LoginException with the specified detail message.
A detail message is a String that describes this particular
exception.
super(msg);
|
|