Class AuthenticationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.forgerock.openig.tools.authentication.AuthenticationException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
UnrecoverableAuthenticationException
Represents an authentication error or failure.
- See Also:
-
Constructor Summary
ConstructorDescriptionAuthenticationException
(String message) Constructs a new exception with the given message.AuthenticationException
(String message, Throwable cause) Constructs a new exception with the given message and root cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
AuthenticationException
Constructs a new exception with the given message.- Parameters:
message
- error message
-
AuthenticationException
Constructs a new exception with the given message and root cause.- Parameters:
message
- error messagecause
- root cause
-