xref: /aosp_15_r20/external/javasqlite/src/main/java/SQLite/Exception.java (revision fd76c71b147b98c03334ec0945352cee0b39aab1)
1 package SQLite;
2 
3 /**
4  * Class for SQLite related exceptions.
5  */
6 
7 public class Exception extends java.lang.Exception {
8 
9     /**
10      * Construct a new SQLite exception.
11      *
12      * @param string error message
13      */
14 
Exception(String string)15     public Exception(String string) {
16 	super(string);
17     }
18 }
19