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

brooklyn.util.internal.ssh.SshException Maven / Gradle / Ivy

There is a newer version: 0.7.0-M1
Show newest version
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