![JAR search and dependency download from the Maven repository](/logo.png)
bdi.glue.ssh.common.SshException Maven / Gradle / Ivy
package bdi.glue.ssh.common;
/**
* @author @aloyer
*/
public class SshException extends RuntimeException {
public SshException(String message) {
super(message);
}
public SshException(String message, Throwable cause) {
super(message, cause);
}
public SshException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy