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

cn.schoolwow.ssh.domain.exception.SSHException Maven / Gradle / Ivy

package cn.schoolwow.ssh.domain.exception;

/**SSH操作失败*/
public class SSHException extends RuntimeException{
    public SSHException(String msg){
        super(msg);
    }

    public SSHException(Exception e){
        super(e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy