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
public class OpenIdConnectVerificationException extends Exception
Problem during the verification of an OpenId Connect module.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OpenIdConnectVerificationException()
Construct 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.OpenIdConnectVerificationException(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
-
OpenIdConnectVerificationException
public OpenIdConnectVerificationException()
Construct the exception.
-
OpenIdConnectVerificationException
public OpenIdConnectVerificationException(String message)
Construct the exception with the given message.- Parameters:
message
- The message.
-
OpenIdConnectVerificationException
public OpenIdConnectVerificationException(String message, Throwable cause)
Construct the exception with the given message and cause.- Parameters:
message
- The message.cause
- The cause.
-
OpenIdConnectVerificationException
public OpenIdConnectVerificationException(Throwable cause)
Construct the exception with the given cause.- Parameters:
cause
- The cause.
-
-