blob: cc26b99ca869ad10e28155a835ec5536c464d4d4 [file] [log] [blame]
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);
}
}