net.quasardb.qdb.exception.operation.InvalidIteratorException 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 an operation on an iterator is considered invalid, i.e.
* while attempting to dereference an iterator that is pointing to the end of a
* collection.
*/
public final class InvalidIteratorException extends OperationException {
public InvalidIteratorException(String message) {
super(message);
}
}