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