Package com.nimbusds.jose.jwk.source
Class JWKSetUnavailableException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.nimbusds.jose.JOSEException
com.nimbusds.jose.KeySourceException
com.nimbusds.jose.jwk.source.JWKSetUnavailableException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
JWKSetParseException
,JWKSetRetrievalException
JWK set unavailable exception.
- Version:
- 2022-09-04
- Author:
- Thomas Rørvik Skjølberg
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionJWKSetUnavailableException
(String message) Creates a new JWK set unavailable exception.JWKSetUnavailableException
(String message, Throwable cause) Creates a new JWK set unavailable exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
JWKSetUnavailableException
Creates a new JWK set unavailable exception.- Parameters:
message
- The message,null
if not specified.
-
JWKSetUnavailableException
Creates a new JWK set unavailable exception.- Parameters:
message
- The message,null
if not specified.cause
- The cause,null
if not specified.
-