libdb/lang/sql/jdbc/SQLite/Exception.java

19 lines
282 B
Java
Raw Normal View History

2011-09-13 17:44:24 +00:00
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);
}
}