Class InvalidJWTException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.forgerock.oauth.resolvers.exceptions.OpenIdConnectVerificationException
org.forgerock.oauth.resolvers.exceptions.InvalidJWTException
- All Implemented Interfaces:
Serializable
Invalid JWT.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstruct the exception.InvalidJWTException
(String message) Construct the exception with the given message.InvalidJWTException
(String message, Throwable cause) Construct the exception with the given message and cause.InvalidJWTException
(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 Details
-
InvalidJWTException
public InvalidJWTException()Construct the exception. -
InvalidJWTException
Construct the exception with the given message.- Parameters:
message
- The message.
-
InvalidJWTException
Construct the exception with the given message and cause.- Parameters:
message
- The message.cause
- The cause.
-
InvalidJWTException
Construct the exception with the given cause.- Parameters:
cause
- The cause.
-