Returns a character string describing an error specified by a major error number
Procedure:
Signature:
const char * H5Eget_major(H5E_major_t n)
SUBROUTINE h5eget_major_f(error_no, name, hdferr)
INTEGER, INTENT(IN) :: error_no !Major error number
CHARACTER(LEN=*), INTENT(OUT) :: name ! File name
INTEGER, INTENT(OUT) :: hdferr ! Error code
END SUBROUTINE h5eget_major_f
Parameters:
H5E_major_t n | IN: Major error number |
Description:
Given a major error number, H5E_GET_MAJOR returns a constant character string that describes the error.
Returns:
Returns a character string describing the error if successful. Otherwise returns "Invalid major error number."
History:
Release | Change |
---|
1.8.0 | Function deprecated in this release. |
--- Last Modified: June 02, 2020 | 12:45 PM