diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1997-08-11 16:09:29 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1997-08-11 16:09:29 (GMT) |
commit | 9b80b8ff79f46b1791a7c4c3d53c7a075e8f9110 (patch) | |
tree | d583eb1dc7dce94ab4cc951ac736b6baf6a97096 | |
parent | bae16b355d04b0c25bca728cb19b3a998501663b (diff) | |
download | hdf5-9b80b8ff79f46b1791a7c4c3d53c7a075e8f9110.zip hdf5-9b80b8ff79f46b1791a7c4c3d53c7a075e8f9110.tar.gz hdf5-9b80b8ff79f46b1791a7c4c3d53c7a075e8f9110.tar.bz2 |
[svn-r19] Added new minor error code - H5E_BADVALUE, for arguments with only a single
incorrect value.
-rw-r--r-- | src/H5Eprivate.h | 1 | ||||
-rw-r--r-- | src/H5Eproto.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/H5Eprivate.h b/src/H5Eprivate.h index d36b2a2..4a6ad8f 100644 --- a/src/H5Eprivate.h +++ b/src/H5Eprivate.h @@ -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"}, diff --git a/src/H5Eproto.h b/src/H5Eproto.h index 95c198c..187737f 100644 --- a/src/H5Eproto.h +++ b/src/H5Eproto.h @@ -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 */ |