Package org.forgerock.tokenhandler
Class TokenHandlerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.forgerock.tokenhandler.TokenHandlerException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
InvalidTokenException
An exception generated by a
TokenHandler
on either creation, validation, or state extraction.- See Also:
-
Constructor Summary
ConstructorDescriptionTokenHandlerException
(String message) Constructs a new exception with the specified detail message.TokenHandlerException
(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.TokenHandlerException
(Throwable cause) Constructs a new exception with the specified 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
-
TokenHandlerException
Constructs a new exception with the specified detail message.- Parameters:
message
- the message
-
TokenHandlerException
Constructs a new exception with the specified cause.- Parameters:
cause
- the cause
-
TokenHandlerException
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- the messagecause
- the cause
-