1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
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); } }