Class VaultClient.VaultException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.scivicslab.turingworkflow.plugins.vault.VaultClient.VaultException
- All Implemented Interfaces:
Serializable
- Enclosing class:
VaultClient
Exception thrown when Vault operations fail, such as communication errors,
authentication failures, or missing secrets.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionVaultException(String message) Creates a newVaultExceptionwith the specified detail message.VaultException(String message, Throwable cause) Creates a newVaultExceptionwith the specified detail message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
VaultException
Creates a newVaultExceptionwith the specified detail message.- Parameters:
message- a description of what went wrong
-
VaultException
Creates a newVaultExceptionwith the specified detail message and cause.- Parameters:
message- a description of what went wrongcause- the underlying exception
-