Class SshConnectionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.pentaho.di.core.ssh.exceptions.SshConnectionException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
SftpException,SshAuthenticationException,SshTimeoutException
Exception thrown when SSH connection operations fail.
This includes connection establishment, authentication, and configuration errors.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSshConnectionException(String message) Constructs a new SSH connection exception with the specified detail message.SshConnectionException(String message, Throwable cause) Constructs a new SSH connection exception with the specified detail message and cause.SshConnectionException(Throwable cause) Constructs a new SSH connection 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 Details
-
SshConnectionException
Constructs a new SSH connection exception with the specified detail message.- Parameters:
message- the detail message
-
SshConnectionException
Constructs a new SSH connection exception with the specified detail message and cause.- Parameters:
message- the detail messagecause- the cause of this exception
-
SshConnectionException
Constructs a new SSH connection exception with the specified cause.- Parameters:
cause- the cause of this exception
-