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
public abstract class VaultConnectorException extends Exception
Abstract Exception class for Vault Connector internal exceptions.- Since:
- 0.1
- Author:
- Stefan Kalscheuer
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedVaultConnectorException()Constructs a new empty exception.protectedVaultConnectorException(String message)Constructs a new exception with the specified detail message.protectedVaultConnectorException(String message, Throwable cause)Constructs a new exception with the specified detail message and cause.protectedVaultConnectorException(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 Detail
-
VaultConnectorException
protected VaultConnectorException()
Constructs a new empty exception.
-
VaultConnectorException
protected VaultConnectorException(String message)
Constructs a new exception with the specified detail message.- Parameters:
message- the detail message
-
VaultConnectorException
protected VaultConnectorException(Throwable cause)
Constructs a new exception with the specified cause.- Parameters:
cause- the cause
-
-