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
public class TokenHandlerException extends Exception
An exception generated by aTokenHandleron either creation, validation, or state extraction.- See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description TokenHandlerException(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 Detail
- 
TokenHandlerException
public TokenHandlerException(String message)
Constructs a new exception with the specified detail message.- Parameters:
 message- the message
 
- 
TokenHandlerException
public TokenHandlerException(Throwable cause)
Constructs a new exception with the specified cause.- Parameters:
 cause- the cause
 
 - 
 
 -