Class JwtExpiredException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.forgerock.oauth.resolvers.exceptions.OpenIdConnectVerificationException
-
- org.forgerock.oauth.resolvers.exceptions.JwtExpiredException
-
- All Implemented Interfaces:
Serializable
public class JwtExpiredException extends OpenIdConnectVerificationException
Expired JWT.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JwtExpiredException()
Construct the exception.JwtExpiredException(String message)
Construct the exception with the given message.JwtExpiredException(String message, Throwable cause)
Construct the exception with the given message and cause.JwtExpiredException(Throwable cause)
Construct the exception with the given 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
-
JwtExpiredException
public JwtExpiredException()
Construct the exception.
-
JwtExpiredException
public JwtExpiredException(String message)
Construct the exception with the given message.- Parameters:
message
- The message.
-
JwtExpiredException
public JwtExpiredException(String message, Throwable cause)
Construct the exception with the given message and cause.- Parameters:
message
- The message.cause
- The cause.
-
JwtExpiredException
public JwtExpiredException(Throwable cause)
Construct the exception with the given cause.- Parameters:
cause
- The cause.
-
-