diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2021-10-25 14:28:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-25 14:28:18 (GMT) |
commit | a931934fa793ceeb8334e365de225bfd1b67c92a (patch) | |
tree | 568377d08812afad33334fc1aff0e6353e06a990 /java/src | |
parent | bc5825e49120703003533bcd74e28c50c4fde983 (diff) | |
download | hdf5-a931934fa793ceeb8334e365de225bfd1b67c92a.zip hdf5-a931934fa793ceeb8334e365de225bfd1b67c92a.tar.gz hdf5-a931934fa793ceeb8334e365de225bfd1b67c92a.tar.bz2 |
Merge Correct java exception declarations #1121 (#1123)
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/hdf/hdf5lib/H5.java | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/java/src/hdf/hdf5lib/H5.java b/java/src/hdf/hdf5lib/H5.java index a435339..b92695e 100644 --- a/java/src/hdf/hdf5lib/H5.java +++ b/java/src/hdf/hdf5lib/H5.java @@ -12231,8 +12231,11 @@ public class H5 implements java.io.Serializable { * IN: Field name of the field index to retrieve. * * @return if field is defined, the index; else negative. + * + * @exception HDF5LibraryException + * - Error from the HDF-5 Library. **/ - public synchronized static native int H5Tget_member_index(long type_id, String field_name); + public synchronized static native int H5Tget_member_index(long type_id, String field_name) throws HDF5LibraryException; /** * H5Tget_member_name retrieves the name of a field of a compound datatype or an element of an enumeration datatype. @@ -12243,8 +12246,11 @@ public class H5 implements java.io.Serializable { * IN: Field index (0-based) of the field name to retrieve. * * @return a valid pointer to the name if successful; otherwise null. + * + * @exception HDF5LibraryException + * - Error from the HDF-5 Library. **/ - public synchronized static native String H5Tget_member_name(long type_id, int field_idx); + public synchronized static native String H5Tget_member_name(long type_id, int field_idx) throws HDF5LibraryException; /** * H5Tget_member_offset returns the byte offset of the specified member of the compound datatype. This is the byte @@ -12256,11 +12262,8 @@ public class H5 implements java.io.Serializable { * IN: Field index (0-based) of the field type to retrieve. * * @return the offset of the member. - * - * @exception HDF5LibraryException - * - Error from the HDF-5 Library. **/ - public synchronized static native long H5Tget_member_offset(long type_id, int membno) throws HDF5LibraryException; + public synchronized static native long H5Tget_member_offset(long type_id, int membno); /** * H5Tget_member_type returns the datatype of the specified member. |