From 97b48ab14d56d353790dfdb3b4fc437fc9234cf9 Mon Sep 17 00:00:00 2001 From: Kenneth Geisshirt Date: Wed, 3 Jul 2013 15:41:28 +0200 Subject: [PATCH] Use java.io.IOException. --- tightdb_jni/src/util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tightdb_jni/src/util.cpp b/tightdb_jni/src/util.cpp index f129d51e3c..eacef922af 100644 --- a/tightdb_jni/src/util.cpp +++ b/tightdb_jni/src/util.cpp @@ -82,7 +82,7 @@ void ThrowException(JNIEnv* env, ExceptionKind exception, std::string classStr, break; case IOFailed: - jExceptionClass = env->FindClass("java/lang/IOException"); + jExceptionClass = env->FindClass("java/io/IOException"); message = "Failed to open " + classStr; break;