Module de.stklcode.jvault.connector
Class ConnectionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
de.stklcode.jvault.connector.exception.VaultConnectorException
de.stklcode.jvault.connector.exception.ConnectionException
- All Implemented Interfaces:
- Serializable
Exception thrown on problems with connection to Vault backend.
- Since:
- 0.1
- Author:
- Stefan Kalscheuer
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionConstructs a new empty exception.ConnectionException(String message) Constructs a new exception with the specified detail message.ConnectionException(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.ConnectionException(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- 
ConnectionExceptionpublic ConnectionException()Constructs a new empty exception.
- 
ConnectionExceptionConstructs a new exception with the specified detail message.- Parameters:
- message- the detail message
 
- 
ConnectionExceptionConstructs a new exception with the specified cause.- Parameters:
- cause- the cause
 
- 
ConnectionExceptionConstructs a new exception with the specified detail message and cause.- Parameters:
- message- the detail message
- cause- the cause
 
 
-