Class TlsException
- java.lang.Object
 - 
- java.lang.Throwable
 - 
- java.lang.Exception
 - 
- de.stklcode.jvault.connector.exception.VaultConnectorException
 - 
- de.stklcode.jvault.connector.exception.TlsException
 
 
 
 
 
- 
- All Implemented Interfaces:
 Serializable
public class TlsException extends VaultConnectorException
Exception thrown on errors with TLS connection.- Since:
 - 0.4.0
 - Author:
 - Stefan Kalscheuer
 - See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description TlsException()Constructs a new empty exception.TlsException(String message)Constructs a new exception with the specified detail message.TlsException(String message, Throwable cause)Constructs a new exception with the specified detail message and cause.TlsException(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
- 
TlsException
public TlsException()
Constructs a new empty exception. 
- 
TlsException
public TlsException(String message)
Constructs a new exception with the specified detail message.- Parameters:
 message- the detail message
 
- 
TlsException
public TlsException(Throwable cause)
Constructs a new exception with the specified cause.- Parameters:
 cause- the cause
 
 - 
 
 -