Class FailedToLoadJWKException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.forgerock.json.jose.exceptions.FailedToLoadJWKException
-
- All Implemented Interfaces:
Serializable
public class FailedToLoadJWKException extends Exception
Unable to load the JWK/x5u location points.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FailedToLoadJWKException()
Construct the exception.FailedToLoadJWKException(String message)
Construct the exception with the given message.FailedToLoadJWKException(String message, Throwable cause)
Construct the exception with the given message and cause.FailedToLoadJWKException(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
-
FailedToLoadJWKException
public FailedToLoadJWKException()
Construct the exception.
-
FailedToLoadJWKException
public FailedToLoadJWKException(String message)
Construct the exception with the given message.- Parameters:
message
- The message.
-
FailedToLoadJWKException
public FailedToLoadJWKException(String message, Throwable cause)
Construct the exception with the given message and cause.- Parameters:
message
- The message.cause
- The cause.
-
FailedToLoadJWKException
public FailedToLoadJWKException(Throwable cause)
Construct the exception with the given cause.- Parameters:
cause
- The cause.
-
-