All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hidetake.groovy.ssh.operation.SftpFailureException.groovy Maven / Gradle / Ivy

There is a newer version: 2.11.2
Show newest version
package org.hidetake.groovy.ssh.operation

import com.jcraft.jsch.SftpException as JschSftpException

class SftpFailureException extends SftpException {
    SftpFailureException(String contextMessage, JschSftpException cause) {
        super(contextMessage, cause, SftpError.SSH_FX_FAILURE)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy