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
public class ExpiredTokenException extends InvalidTokenException
An exception generated by aTokenHandleron extraction when the token is expired.- See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description ExpiredTokenException(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 Detail
- 
ExpiredTokenException
public ExpiredTokenException(String message)
Constructs a new exception with the specified detail message.- Parameters:
 message- the message
 
- 
ExpiredTokenException
public ExpiredTokenException(Throwable cause)
Constructs a new exception with the specified cause.- Parameters:
 cause- the cause
 
 - 
 
 -