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

org.jsimpledb.JSimpleDBException Maven / Gradle / Ivy

The newest version!

/*
 * Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
 */

package org.jsimpledb;

/**
 * Superclass of all unchecked exceptions thrown by the {@link JSimpleDB} API.
 */
@SuppressWarnings("serial")
public class JSimpleDBException extends RuntimeException {

    public JSimpleDBException() {
    }

    public JSimpleDBException(String message) {
        super(message);
    }

    public JSimpleDBException(Throwable cause) {
        super(cause);
    }

    public JSimpleDBException(String message, Throwable cause) {
        super(message, cause);
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy