diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2018-08-06 16:30:52 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2018-08-06 16:31:20 (GMT) |
commit | f9074881cdfe04e96e7faa43e955b42428d9fcb9 (patch) | |
tree | 3230eb62cef32f23e4dc2df09207935d5ecd7d2d /java/src/jni/exceptionImp.c | |
parent | fe7aaff8cc4b9675fc64995481f9ee8a26ea09e4 (diff) | |
download | hdf5-f9074881cdfe04e96e7faa43e955b42428d9fcb9.zip hdf5-f9074881cdfe04e96e7faa43e955b42428d9fcb9.tar.gz hdf5-f9074881cdfe04e96e7faa43e955b42428d9fcb9.tar.bz2 |
HDFFV-10544 Add more descriptive text
Diffstat (limited to 'java/src/jni/exceptionImp.c')
-rw-r--r-- | java/src/jni/exceptionImp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/src/jni/exceptionImp.c b/java/src/jni/exceptionImp.c index 69f8dde..ccda0d2 100644 --- a/java/src/jni/exceptionImp.c +++ b/java/src/jni/exceptionImp.c @@ -83,16 +83,16 @@ typedef struct H5E_num_t { } \ jm = ENVPTR->GetMethodID(ENVPAR jc, "<init>", "(Ljava/lang/String;)V"); \ if (jm == NULL) { \ - printf("FATAL ERROR: GetMethodID failed\n"); \ + printf("THROWEXCEPTION FATAL ERROR: GetMethodID failed\n"); \ return JNI_FALSE; \ } \ ex = ENVPTR->NewObjectA (ENVPAR jc, jm, (jvalue*)(args)); \ if (ex == NULL) { \ - printf("FATAL ERROR: %s: Creation failed\n", (className)); \ + printf("THROWEXCEPTION FATAL ERROR: %s: Creation failed\n", (className)); \ return JNI_FALSE; \ } \ if (ENVPTR->Throw(ENVPAR (jthrowable)ex) < 0) { \ - printf("FATAL ERROR: %s: Throw failed\n", (className)); \ + printf("THROWEXCEPTION FATAL ERROR: %s: Throw failed\n", (className)); \ return JNI_FALSE; \ } \ return JNI_TRUE; \ |