From f9074881cdfe04e96e7faa43e955b42428d9fcb9 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Mon, 6 Aug 2018 11:30:52 -0500 Subject: HDFFV-10544 Add more descriptive text --- java/src/jni/exceptionImp.c | 6 +++--- 1 file 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, "", "(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; \ -- cgit v0.12