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