Package com.nimbusds.jose
Class KeySourceException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.nimbusds.jose.JOSEException
-
- com.nimbusds.jose.KeySourceException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
JWKSetUnavailableException
,RateLimitReachedException
,RemoteKeySourceException
public class KeySourceException extends JOSEException
Key source exception.- Version:
- 2023-01-05
- Author:
- Vladimir Dzhuvinov
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description KeySourceException()
Creates a new key source exception.KeySourceException(String message)
Creates a new key source exception.KeySourceException(String message, Throwable cause)
Creates a new key source exception.KeySourceException(Throwable cause)
Creates a new key source exception.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
KeySourceException
public KeySourceException(String message)
Creates a new key source exception.- Parameters:
message
- The message.
-
KeySourceException
public KeySourceException(String message, Throwable cause)
Creates a new key source exception.- Parameters:
message
- The message.cause
- The cause.
-
KeySourceException
public KeySourceException(Throwable cause)
Creates a new key source exception.- Parameters:
cause
- The cause.
-
KeySourceException
public KeySourceException()
Creates a new key source exception.
-
-