Module io.inverno.mod.security.jose
Package io.inverno.mod.security.jose.jwk
Class JWKResolveException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.inverno.mod.security.jose.JOSEProcessingException
io.inverno.mod.security.jose.jwk.JWKProcessingException
io.inverno.mod.security.jose.jwk.JWKResolveException
- All Implemented Interfaces:
Serializable
Thrown to indicate an error while resolving a JWK (e.g. resolve keys, resolve JWK urls, validate certificate paths, consistency checks...)
- Since:
- 1.5
- Author:
- Jeremy Kuhn
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates a JWK resolve exception.JWKResolveException
(String message) Creates a JWK resolve exception with the specified message.JWKResolveException
(String message, Throwable cause) Creates a JWK resolve exception with the specified message and cause.JWKResolveException
(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Creates a JWK resolve exception with the specified message, cause, suppression enabled or disabled and writable stack trace enabled or disabled.JWKResolveException
(Throwable cause) Creates a JWK resolve exception with the specified 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
-
JWKResolveException
public JWKResolveException()Creates a JWK resolve exception.
-
JWKResolveException
Creates a JWK resolve exception with the specified message.
- Parameters:
message
- the message
-
JWKResolveException
Creates a JWK resolve exception with the specified cause.
- Parameters:
cause
- the cause
-
JWKResolveException
Creates a JWK resolve exception with the specified message and cause.
- Parameters:
message
- the messagecause
- the cause
-
JWKResolveException
public JWKResolveException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Creates a JWK resolve exception with the specified message, cause, suppression enabled or disabled and writable stack trace enabled or disabled.
- Parameters:
message
- the messagecause
- the causeenableSuppression
- true to enable suppression, false otherwisewritableStackTrace
- true to make the stack trace writable, false otherwise
-