Class SftpException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.pentaho.di.core.ssh.exceptions.SshConnectionException
org.pentaho.di.core.ssh.exceptions.SftpException
- All Implemented Interfaces:
Serializable
Exception thrown when SFTP operations fail.
This includes file transfer errors, directory operations, and SFTP session errors.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSftpException(String message) Constructs a new SFTP exception with the specified detail message.SftpException(String message, Throwable cause) Constructs a new SFTP exception with the specified detail message and cause.SftpException(Throwable cause) Constructs a new SFTP 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
-
SftpException
Constructs a new SFTP exception with the specified detail message.- Parameters:
message- the detail message
-
SftpException
Constructs a new SFTP exception with the specified detail message and cause.- Parameters:
message- the detail messagecause- the cause of this exception
-
SftpException
Constructs a new SFTP exception with the specified cause.- Parameters:
cause- the cause of this exception
-