switch to use android.database.sqlite version of SQLiteAbortException

This commit is contained in:
Stephen Lombardo 2023-04-06 13:26:54 -04:00 committed by Greyson Parrelli
parent 3960a8edd3
commit 0782125540

View File

@ -80,7 +80,7 @@ void throw_sqlite3_exception(JNIEnv* env, int errcode,
exceptionClass = "android/database/sqlite/SQLiteConstraintException";
break;
case SQLITE_ABORT:
exceptionClass = "net/zetetic/database/sqlcipher/SQLiteAbortException";
exceptionClass = "android/database/sqlite/SQLiteAbortException";
break;
case SQLITE_DONE:
exceptionClass = "android/database/sqlite/SQLiteDoneException";