summaryrefslogtreecommitdiffstats
path: root/java
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2018-08-06 16:30:52 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2018-08-06 16:31:20 (GMT)
commitf9074881cdfe04e96e7faa43e955b42428d9fcb9 (patch)
tree3230eb62cef32f23e4dc2df09207935d5ecd7d2d /java
parentfe7aaff8cc4b9675fc64995481f9ee8a26ea09e4 (diff)
downloadhdf5-f9074881cdfe04e96e7faa43e955b42428d9fcb9.zip
hdf5-f9074881cdfe04e96e7faa43e955b42428d9fcb9.tar.gz
hdf5-f9074881cdfe04e96e7faa43e955b42428d9fcb9.tar.bz2
HDFFV-10544 Add more descriptive text
Diffstat (limited to 'java')
-rw-r--r--java/src/jni/exceptionImp.c6
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; \