brooklyn.util.internal.ssh.SshException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of brooklyn-core Show documentation
Show all versions of brooklyn-core Show documentation
Entity implementation classes, events, and other core elements
package brooklyn.util.internal.ssh;
public class SshException extends RuntimeException {
private static final long serialVersionUID = -5690230838066860965L;
public SshException(String msg) {
super(msg);
}
public SshException(String msg, Throwable cause) {
super(msg, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy