net.quasardb.qdb.exception.system.local.InputBufferTooSmallException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jni Show documentation
Show all versions of jni Show documentation
API for the JNI components of the QuasarDB API for Java. Should not be included directly.
package net.quasardb.qdb.exception;
/**
* Exception is thrown when the local input buffer is unable to hold the entire
* resultset. If you encounter this error, either request a smaller timespan per
* query or increase your local client buffer size.
*/
public class InputBufferTooSmallException extends LocalSystemException {
public InputBufferTooSmallException(String message) {
super(message);
}
}