Class OpenIdConnectVerificationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.forgerock.oauth.resolvers.exceptions.OpenIdConnectVerificationException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
InvalidAudException
,InvalidIssException
,InvalidJWTException
,InvalidSignatureException
,JwtExpiredException
Problem during the verification of an OpenId Connect module.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstruct the exception.OpenIdConnectVerificationException
(String message) Construct the exception with the given message.OpenIdConnectVerificationException
(String message, Throwable cause) Construct the exception with the given message and 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
-
OpenIdConnectVerificationException
public OpenIdConnectVerificationException()Construct the exception. -
OpenIdConnectVerificationException
Construct the exception with the given message.- Parameters:
message
- The message.
-
OpenIdConnectVerificationException
Construct the exception with the given message and cause.- Parameters:
message
- The message.cause
- The cause.
-
OpenIdConnectVerificationException
Construct the exception with the given cause.- Parameters:
cause
- The cause.
-