summaryrefslogtreecommitdiffstats
path: root/sql/src/main/java/SQLite/Exception.java
blob: cc26b99ca869ad10e28155a835ec5536c464d4d4 (plain)
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);
    }
}