Package com.mwdle.bitwarden.cli
Class BitwardenConnectionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
com.mwdle.bitwarden.cli.BitwardenConnectionException
- All Implemented Interfaces:
Serializable
A specialized
IOException
thrown when the Bitwarden CLI fails due to a
network-related issue, such as a DNS failure or an inability to connect to the server.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionBitwardenConnectionException
(String message, Throwable cause) Constructs a new BitwardenConnectionException. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
BitwardenConnectionException
Constructs a new BitwardenConnectionException.- 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).
-