[svn-r19] Added new minor error code - H5E_BADVALUE, for arguments with only a single

incorrect value.
This commit is contained in:
Quincey Koziol 1997-08-11 11:09:29 -05:00
parent bae16b355d
commit 9b80b8ff79
2 changed files with 2 additions and 0 deletions

View File

@ -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"},

View File

@ -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 */