Class JwsVerifyingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.forgerock.json.jose.exceptions.JwtRuntimeException
-
- org.forgerock.json.jose.exceptions.JwsException
-
- org.forgerock.json.jose.exceptions.JwsVerifyingException
-
- All Implemented Interfaces:
Serializable
public class JwsVerifyingException extends JwsException
Represents an exception for when verification of the JWS signature fails.- Since:
- 2.0.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JwsVerifyingException(String message)
Constructs a new JwsVerifyingException with the provided exception message.JwsVerifyingException(String message, Throwable throwable)
Constructs a new JwsVerifyingException with the provided exception message and underlying throwable.JwsVerifyingException(Throwable throwable)
Constructs a new JwsVerifyingException with the provided underlying throwable.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
JwsVerifyingException
public JwsVerifyingException(String message)
Constructs a new JwsVerifyingException with the provided exception message.- Parameters:
message
- The exception message.
-
JwsVerifyingException
public JwsVerifyingException(String message, Throwable throwable)
Constructs a new JwsVerifyingException with the provided exception message and underlying throwable.- Parameters:
message
- The exception message.throwable
- The underlying throwable.
-
JwsVerifyingException
public JwsVerifyingException(Throwable throwable)
Constructs a new JwsVerifyingException with the provided underlying throwable.- Parameters:
throwable
- The underlying throwable.
-
-