com.tinkerpop.rexster.protocol.server.IncompleteRexProRequestException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rexster-protocol Show documentation
Show all versions of rexster-protocol Show documentation
RexPro is a binary protocol for Rexster graph server.
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