mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-02-17 16:10:24 +08:00
[svn-r19] Added new minor error code - H5E_BADVALUE, for arguments with only a single
incorrect value.
This commit is contained in:
parent
bae16b355d
commit
9b80b8ff79
@ -78,6 +78,7 @@ static const hdf_min_error_messages_t hdf_min_error_messages[] =
|
||||
{H5E_UNSUPPORTED, "Feature is unsupported"},
|
||||
{H5E_BADTYPE, "Incorrect type found"},
|
||||
{H5E_BADRANGE, "Argument out of range"},
|
||||
{H5E_BADVALUE, "Bad value for argument"},
|
||||
{H5E_NOSPACE, "No space available for allocation"},
|
||||
{H5E_FILEEXISTS, "File already exists"},
|
||||
{H5E_FILEOPEN, "File already open"},
|
||||
|
@ -95,6 +95,7 @@ typedef enum
|
||||
H5E_UNSUPPORTED, /* Feature is unsupported */
|
||||
H5E_BADTYPE, /* Incorrect type found */
|
||||
H5E_BADRANGE, /* Argument out of range */
|
||||
H5E_BADVALUE, /* Bad value for argument */
|
||||
|
||||
/* Resource errors */
|
||||
H5E_NOSPACE, /* No space available for allocation */
|
||||
|
Loading…
Reference in New Issue
Block a user