All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jsimpledb.kv.array.ArrayKVException Maven / Gradle / Ivy

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