Package org.forgerock.tokenhandler
Class ExpiredTokenException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.forgerock.tokenhandler.TokenHandlerException
org.forgerock.tokenhandler.InvalidTokenException
org.forgerock.tokenhandler.ExpiredTokenException
- All Implemented Interfaces:
 Serializable
An exception generated by a 
TokenHandler on extraction when the token is expired.- See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionExpiredTokenException(String message) Constructs a new exception with the specified detail message.ExpiredTokenException(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.ExpiredTokenException(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
- 
ExpiredTokenException
Constructs a new exception with the specified detail message.- Parameters:
 message- the message
 - 
ExpiredTokenException
Constructs a new exception with the specified cause.- Parameters:
 cause- the cause
 - 
ExpiredTokenException
Constructs a new exception with the specified detail message and cause.- Parameters:
 message- the messagecause- the cause
 
 -