diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2018-08-06 18:15:50 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2018-08-06 18:15:50 (GMT) |
commit | 78c4623235ea54ec2adc9d079e9f5c9e87f870ba (patch) | |
tree | a90becb4636cf1f659d004caf84cfdda4edc20c4 /java/src/jni/exceptionImp.h | |
parent | 51a5d112ade5dd3de0b9e62a38ab4dc888bf5cf5 (diff) | |
download | hdf5-78c4623235ea54ec2adc9d079e9f5c9e87f870ba.zip hdf5-78c4623235ea54ec2adc9d079e9f5c9e87f870ba.tar.gz hdf5-78c4623235ea54ec2adc9d079e9f5c9e87f870ba.tar.bz2 |
HDFFV-10544 Improve JNI exception handling
Diffstat (limited to 'java/src/jni/exceptionImp.h')
-rw-r--r-- | java/src/jni/exceptionImp.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/java/src/jni/exceptionImp.h b/java/src/jni/exceptionImp.h index 423e537..5873202 100644 --- a/java/src/jni/exceptionImp.h +++ b/java/src/jni/exceptionImp.h @@ -55,20 +55,20 @@ Java_hdf_hdf5lib_exceptions_HDF5LibraryException_printStackTrace0 /* * Class: hdf_hdf5lib_exceptions_HDFLibraryException - * Method: getMajorErrorNumber + * Method: _getMajorErrorNumber * Signature: ()J */ JNIEXPORT jlong JNICALL -Java_hdf_hdf5lib_exceptions_HDF5LibraryException_getMajorErrorNumber +Java_hdf_hdf5lib_exceptions_HDF5LibraryException__1getMajorErrorNumber (JNIEnv *env, jobject obj); /* * Class: hdf_hdf5lib_exceptions_HDFLibraryException - * Method: getMinorErrorNumber + * Method: _getMinorErrorNumber * Signature: ()J */ JNIEXPORT jlong JNICALL -Java_hdf_hdf5lib_exceptions_HDF5LibraryException_getMinorErrorNumber +Java_hdf_hdf5lib_exceptions_HDF5LibraryException__1getMinorErrorNumber (JNIEnv *env, jobject obj); #ifdef __cplusplus |