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

dev.galasa.ipnetwork.SSHException Maven / Gradle / Ivy

There is a newer version: 0.38.0
Show newest version
/*
 * Licensed Materials - Property of IBM
 * 
 * (c) Copyright IBM Corp. 2019,2020.
 */
package dev.galasa.ipnetwork;

/**
 * zOS Command exception indicating an error in SSH
 * 
 * @author James Bartlett
 *
 */
public class SSHException extends IpNetworkManagerException {
    private static final long serialVersionUID = 1L;

    public SSHException() {
    }

    public SSHException(String message) {
        super(message);
    }

    public SSHException(Throwable throwable) {
        super(throwable);
    }

    public SSHException(String message, Throwable throwable) {
        super(message, throwable);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy