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

ch.ethz.ssh2.RequestMismatchException Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy