
com.googlecode.openbox.server.ssh.SshException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ssh Show documentation
Show all versions of ssh Show documentation
This is remote linux SSH module
package com.googlecode.openbox.server.ssh;
public class SshException extends RuntimeException {
public static final String EXCEPTION_FROM = "[GSSH - SFTP] Exception ";
private static final long serialVersionUID = 1L;
public SshException(String message) {
super(EXCEPTION_FROM + message);
}
public SshException(String message, Throwable cause) {
super(EXCEPTION_FROM + message, cause);
}
public SshException(Throwable cause) {
super(EXCEPTION_FROM + cause.getMessage(), cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy