Class SshAuthenticationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.pentaho.di.core.ssh.exceptions.SshConnectionException
org.pentaho.di.core.ssh.exceptions.SshAuthenticationException
- All Implemented Interfaces:
Serializable
Exception thrown when SSH authentication fails.
This includes invalid credentials, key authentication failures, and permission errors.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSshAuthenticationException(String message) Constructs a new SSH authentication exception with the specified detail message.SshAuthenticationException(String message, Throwable cause) Constructs a new SSH authentication exception with the specified detail message and cause.Constructs a new SSH authentication 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
-
SshAuthenticationException
Constructs a new SSH authentication exception with the specified detail message.- Parameters:
message- the detail message
-
SshAuthenticationException
Constructs a new SSH authentication exception with the specified detail message and cause.- Parameters:
message- the detail messagecause- the cause of this exception
-
SshAuthenticationException
Constructs a new SSH authentication exception with the specified cause.- Parameters:
cause- the cause of this exception
-