Name: H5Eget_minor
Signature:
const char * H5Eget_minor(H5E_minor_t n)
Purpose:
Returns a character string describing an error specified by a minor error number.
Description:
Given a minor error number, H5Eget_minor returns a constant character string that describes the error.
Parameters:
Returns:
Returns a character string describing the error if successful. Otherwise returns "Invalid minor error number."
Fortran90 Interface: h5eget_minor_f
SUBROUTINE h5eget_minor_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_minor_f