ch.ethz.ssh2.RequestMismatchException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ganymed-ssh2 Show documentation
Show all versions of ganymed-ssh2 Show documentation
Ganymed SSH-2: Java based SSH-2 Protocol Implementation
The newest version!
package ch.ethz.ssh2;
import java.io.IOException;
/**
* @version $Id: RequestMismatchException.java 99 2014-04-10 09:04:31Z [email protected] $
*/
public class RequestMismatchException extends IOException {
public RequestMismatchException() {
super("The server sent an invalid id field.");
}
public RequestMismatchException(final String message) {
super(message);
}
}