mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-17 01:26:25 +00:00
19 lines
282 B
Java
19 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);
|
||
|
}
|
||
|
}
|