Skip to content

Commit

Permalink
Use java.io.IOException.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenneth Geisshirt committed Jul 3, 2013
1 parent e65b9ab commit 97b48ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tightdb_jni/src/util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 97b48ab

Please sign in to comment.