jsqlite.Exception Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spatialite-android Show documentation
Show all versions of spatialite-android Show documentation
Vector map library written in Java - running on Android and Desktop.
package jsqlite;
/**
* 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);
}
}