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

com.googlecode.openbox.server.ssh.SshException Maven / Gradle / Ivy

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