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

SQLite.Exception Maven / Gradle / Ivy

package SQLite;

/**
 * Class for SQLite related exceptions.
 */

public class Exception extends java.lang.Exception {

    /**
     * Construct a new SQLite exception.
     *
     * @param string error message
     */

    public Exception(String string) {
	super(string);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy