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

com.tinkerpop.rexster.protocol.server.IncompleteRexProRequestException Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
package com.tinkerpop.rexster.protocol.server;

/**
 * Raised when rexpro is asked to process an incomplete request
 * @author Blake Eggleston (bdeggleston.github.com)
 */
public class IncompleteRexProRequestException extends Exception {
    public IncompleteRexProRequestException() {
    }

    public IncompleteRexProRequestException(String s) {
        super(s);
    }

    public IncompleteRexProRequestException(String s, Throwable throwable) {
        super(s, throwable);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy