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 SummaryConstructorsModifierConstructorDescriptionprotectedConstructs 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 SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
VaultConnectorExceptionprotected VaultConnectorException()Constructs a new empty exception.
- 
VaultConnectorExceptionConstructs a new exception with the specified detail message.- Parameters:
- message- the detail message
 
- 
VaultConnectorExceptionConstructs a new exception with the specified cause.- Parameters:
- cause- the cause
 
- 
VaultConnectorExceptionConstructs a new exception with the specified detail message and cause.- Parameters:
- message- the detail message
- cause- the cause
 
 
-