mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
HDFFV-10544 exception variable as local class
This commit is contained in:
parent
762c14fde5
commit
ca7d4f85a5
@ -30,6 +30,9 @@ import hdf.hdf5lib.HDF5Constants;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class HDF5LibraryException extends HDF5Exception {
|
||||
private final long majorErrorNumber;
|
||||
private final long minorErrorNumber;
|
||||
|
||||
/**
|
||||
* Constructs an <code>HDF5LibraryException</code> with no specified detail
|
||||
* message.
|
||||
@ -44,9 +47,10 @@ public class HDF5LibraryException extends HDF5Exception {
|
||||
}
|
||||
catch (Exception e) {
|
||||
}
|
||||
;
|
||||
|
||||
detailMessage = getMinorError(getMinorErrorNumber());
|
||||
this.majorErrorNumber = _getMajorErrorNumber();
|
||||
this.minorErrorNumber = _getMinorErrorNumber();
|
||||
detailMessage = getMinorError(minorErrorNumber());
|
||||
}
|
||||
|
||||
/**
|
||||
@ -65,7 +69,8 @@ public class HDF5LibraryException extends HDF5Exception {
|
||||
}
|
||||
catch (Exception e) {
|
||||
}
|
||||
;
|
||||
this.majorErrorNumber = _getMajorErrorNumber();
|
||||
this.minorErrorNumber = _getMinorErrorNumber();
|
||||
}
|
||||
|
||||
/**
|
||||
@ -74,7 +79,11 @@ public class HDF5LibraryException extends HDF5Exception {
|
||||
*
|
||||
* @return the major error number
|
||||
*/
|
||||
public native long getMajorErrorNumber();
|
||||
public native long getMajorErrorNumber()
|
||||
{
|
||||
return majorErrorNumber;
|
||||
}
|
||||
private native long _getMajorErrorNumber();
|
||||
|
||||
/**
|
||||
* Get the minor error number of the first error on the HDF5 library error
|
||||
@ -82,7 +91,11 @@ public class HDF5LibraryException extends HDF5Exception {
|
||||
*
|
||||
* @return the minor error number
|
||||
*/
|
||||
public native long getMinorErrorNumber();
|
||||
public native long getMinorErrorNumber()
|
||||
{
|
||||
return minorErrorNumber;
|
||||
}
|
||||
private native long _getMinorErrorNumber();
|
||||
|
||||
/**
|
||||
* Return a error message for the minor error number.
|
||||
|
@ -179,13 +179,13 @@ Java_hdf_hdf5lib_exceptions_HDF5LibraryException_printStackTrace0
|
||||
|
||||
/*
|
||||
* Class: hdf_hdf5lib_exceptions_HDFLibraryException
|
||||
* Method: getMajorErrorNumber
|
||||
* Method: _getMajorErrorNumber
|
||||
* Signature: ()J
|
||||
*
|
||||
* Extract the HDF-5 major error number from the HDF-5 error stack.
|
||||
*/
|
||||
JNIEXPORT jlong JNICALL
|
||||
Java_hdf_hdf5lib_exceptions_HDF5LibraryException_getMajorErrorNumber
|
||||
Java_hdf_hdf5lib_exceptions_HDF5LibraryException__1getMajorErrorNumber
|
||||
(JNIEnv *env, jobject obj)
|
||||
{
|
||||
H5E_num_t err_nums;
|
||||
@ -195,17 +195,17 @@ Java_hdf_hdf5lib_exceptions_HDF5LibraryException_getMajorErrorNumber
|
||||
H5Ewalk2(H5E_DEFAULT, H5E_WALK_DOWNWARD, walk_error_callback, &err_nums);
|
||||
|
||||
return err_nums.maj_num;
|
||||
} /* end Java_hdf_hdf5lib_exceptions_HDF5LibraryException_getMajorErrorNumber() */
|
||||
} /* end Java_hdf_hdf5lib_exceptions_HDF5LibraryException__1getMajorErrorNumber() */
|
||||
|
||||
/*
|
||||
* Class: hdf_hdf5lib_exceptions_HDFLibraryException
|
||||
* Method: getMinorErrorNumber
|
||||
* Method: _getMinorErrorNumber
|
||||
* Signature: ()J
|
||||
*
|
||||
* Extract the HDF-5 minor error number from the HDF-5 error stack.
|
||||
*/
|
||||
JNIEXPORT jlong JNICALL
|
||||
Java_hdf_hdf5lib_exceptions_HDF5LibraryException_getMinorErrorNumber
|
||||
Java_hdf_hdf5lib_exceptions_HDF5LibraryException__1getMinorErrorNumber
|
||||
(JNIEnv *env, jobject obj)
|
||||
{
|
||||
H5E_num_t err_nums;
|
||||
@ -215,7 +215,7 @@ Java_hdf_hdf5lib_exceptions_HDF5LibraryException_getMinorErrorNumber
|
||||
H5Ewalk2(H5E_DEFAULT, H5E_WALK_DOWNWARD, walk_error_callback, &err_nums);
|
||||
|
||||
return err_nums.min_num;
|
||||
} /* end Java_hdf_hdf5lib_exceptions_HDF5LibraryException_getMinorErrorNumber() */
|
||||
} /* end Java_hdf_hdf5lib_exceptions_HDF5LibraryException__1getMinorErrorNumber() */
|
||||
|
||||
/*
|
||||
* Routine to raise particular Java exceptions from C
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user