org.jsimpledb.kv.array.ArrayKVException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsimpledb-kv-array Show documentation
Show all versions of jsimpledb-kv-array Show documentation
JSimpleDB "array" key/value store implementations.
The newest version!
/*
* Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
*/
package org.jsimpledb.kv.array;
/**
* Superclass of all unchecked exceptions thrown by a {@link ArrayKVStore}.
*/
@SuppressWarnings("serial")
public class ArrayKVException extends RuntimeException {
public ArrayKVException() {
}
public ArrayKVException(String message) {
super(message);
}
public ArrayKVException(Throwable cause) {
super(cause);
}
public ArrayKVException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy