LoginExceptionpublic class LoginException extends GeneralSecurityException Base class for exceptions that are thrown when a login error occurs. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public LoginException()Creates a new exception instance and initializes it with default values.
super();
| public LoginException(String message)Creates a new exception instance and initializes it with a given message.
super(message);
|
|