libdb/lang/sql/jdbc/SQLite/Exception.java
2011-09-13 13:44:24 -04:00

18 lines
282 B
Java

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);
}
}