Package org.genesys.blocks.security
Class UserException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.genesys.blocks.security.UserException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
NotUniqueUserException,NoUserFoundException,PasswordPolicy.PasswordPolicyException
public class UserException extends Exception
The Class UserException.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UserException()Instantiates a new user exception.UserException(String message)Instantiates a new user exception.UserException(String message, Throwable cause)Instantiates a new user exception.UserException(Throwable cause)Instantiates a new user exception.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
UserException
public UserException()
Instantiates a new user exception.
-
UserException
public UserException(String message)
Instantiates a new user exception.- Parameters:
message- the message
-
UserException
public UserException(String message, Throwable cause)
Instantiates a new user exception.- Parameters:
message- the messagecause- the cause
-
UserException
public UserException(Throwable cause)
Instantiates a new user exception.- Parameters:
cause- the cause
-
-