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

net.quasardb.qdb.exception.protocol.InvalidReplyException Maven / Gradle / Ivy

Go to download

API for the JNI components of the QuasarDB API for Java. Should not be included directly.

There is a newer version: 3.14.1
Show newest version
package net.quasardb.qdb.exception;

/**
 * Exception thrown the response from a remote host cannot be treated.
 */
public final class InvalidReplyException extends ProtocolException {

    public InvalidReplyException() {
        super("Invalid reply from the remote host.");
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy