Skip to content

Commit

Permalink
Merge pull request #91 from kneth/master
Browse files Browse the repository at this point in the history
Use java.io.IOException
  • Loading branch information
bmunkholm committed Jul 3, 2013
2 parents e65b9ab + 97b48ab commit 020f775
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 020f775

Please sign in to comment.