net.quasardb.qdb.exception.system.remote.InterruptedException 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 remote connection has been interrupted. This may
* or may not be recoverable.
*/
public class InterruptedException extends RemoteSystemException {
public InterruptedException(String message) {
super(message);
}
}