Module de.stklcode.jvault.connector
Class VaultConnectorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
de.stklcode.jvault.connector.exception.VaultConnectorException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AuthorizationRequiredException
,ConnectionException
,InvalidRequestException
,InvalidResponseException
,PermissionDeniedException
,TlsException
Abstract Exception class for Vault Connector internal exceptions.
- Since:
- 0.1
- Author:
- Stefan Kalscheuer
- See Also:
-
Constructor Summary
ModifierConstructorDescriptionprotected
Constructs a new empty exception.protected
VaultConnectorException
(String message) Constructs a new exception with the specified detail message.protected
VaultConnectorException
(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.protected
VaultConnectorException
(Throwable cause) Constructs a new 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
-
VaultConnectorException
protected VaultConnectorException()Constructs a new empty exception. -
VaultConnectorException
Constructs a new exception with the specified detail message.- Parameters:
message
- the detail message
-
VaultConnectorException
Constructs a new exception with the specified cause.- Parameters:
cause
- the cause
-
VaultConnectorException
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- the detail messagecause
- the cause
-