SQLiteException
open class SQLiteException(val result: SqliteResultCode.Failure, val message: String) : RuntimeException(source)
Exception resulting from a call to an SQLite API that failed, returning a non-successful result code.
This exception can also be thrown in an SQLite callback, the result and the error message are then forwarded to SQLite.
The helper function throwSQLiteException can be used to construct and throw an instance of SQLiteException.