net.quasardb.qdb.exception.operation.OverflowException 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 thrown when the operation cannot be performed because the 64-bit integer would overflow
*/
public final class OverflowException extends OperationException {
public OverflowException(String message) {
super(message);
}
}