Package com.mwdle.bitwarden.cli
Class BitwardenAuthenticationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.mwdle.bitwarden.cli.BitwardenAuthenticationException
- All Implemented Interfaces:
Serializable
A specialized
RuntimeException
thrown when the Bitwarden CLI fails due to an
authentication error, such as an incorrect API key or master password.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionBitwardenAuthenticationException
(String message, Throwable cause) Constructs a new BitwardenAuthenticationException. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
BitwardenAuthenticationException
Constructs a new BitwardenAuthenticationException.- Parameters:
message
- The detail message, which should be a user-friendly, internationalized string.cause
- The low-level exception that caused this failure (e.g., the original IOException from the CLI).
-