summaryrefslogtreecommitdiffstats
path: root/core/jni/android_database_SQLiteCommon.cpp
diff options
context:
space:
mode:
authorJeff Brown <jeffbrown@google.com>2012-05-09 18:04:34 -0700
committerJeff Brown <jeffbrown@google.com>2012-05-09 18:04:34 -0700
commit25c934533fb81aa08e379ffe60e390dbbd12440c (patch)
tree4d6046bade04eca067288f2d26ab51f8a7ccc224 /core/jni/android_database_SQLiteCommon.cpp
parent8bd8d8969380e24fadca64b6977dc20b1cf4d569 (diff)
downloadframeworks_base-25c934533fb81aa08e379ffe60e390dbbd12440c.zip
frameworks_base-25c934533fb81aa08e379ffe60e390dbbd12440c.tar.gz
frameworks_base-25c934533fb81aa08e379ffe60e390dbbd12440c.tar.bz2
Fix reference to moved class.
Bug: 6468759 Change-Id: I937e824beba4571fce6d2d91cb8213989a4a0afb
Diffstat (limited to 'core/jni/android_database_SQLiteCommon.cpp')
-rw-r--r--core/jni/android_database_SQLiteCommon.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/jni/android_database_SQLiteCommon.cpp b/core/jni/android_database_SQLiteCommon.cpp
index 3484467..06bff19 100644
--- a/core/jni/android_database_SQLiteCommon.cpp
+++ b/core/jni/android_database_SQLiteCommon.cpp
@@ -110,7 +110,7 @@ void throw_sqlite3_exception(JNIEnv* env, int errcode,
exceptionClass = "android/database/sqlite/SQLiteDatatypeMismatchException";
break;
case SQLITE_INTERRUPT:
- exceptionClass = "android/content/OperationCanceledException";
+ exceptionClass = "android/os/OperationCanceledException";
break;
default:
exceptionClass = "android/database/sqlite/SQLiteException";