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

com.hb0730.commons.ssh.jsch.JschRuntimeException Maven / Gradle / Ivy

The newest version!
package com.hb0730.commons.ssh.jsch;

/**
 * Jsch异常
 *
 * @author bing_huang
 * @since 2.1.2
 */
public class JschRuntimeException extends RuntimeException {
    public JschRuntimeException(Throwable cause) {
        super(cause);
    }

    public JschRuntimeException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy