Class VaultSessionManagerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.vault.VaultException
org.springframework.vault.authentication.VaultSessionManagerException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
VaultTokenRenewalException
Abstract superclass for all exceptions thrown in the session manager implementations
- Since:
- 2.1
- Author:
- Mark Paluch
- See Also:
-
Constructor Summary
ConstructorDescriptionCreate aVaultSessionManagerException
with the specified detail message.VaultSessionManagerException
(String msg, Throwable cause) Create aVaultSessionManagerException
with the specified detail message and nested exception. -
Method Summary
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMostSpecificCause, getRootCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
VaultSessionManagerException
Create aVaultSessionManagerException
with the specified detail message.- Parameters:
msg
- the detail message.
-
VaultSessionManagerException
Create aVaultSessionManagerException
with the specified detail message and nested exception.- Parameters:
msg
- the detail message.cause
- the nested exception.
-