[svn-r5961] Purpose:

New error code
Description:
    Add a new error code for the generic properties to use.
Platforms tested:
    FreeBSD 4.6 (sleipnir) (too small to need triple testing)
This commit is contained in:
Quincey Koziol 2002-10-07 12:48:27 -05:00
parent bc6f56390a
commit 0a8533efe1
2 changed files with 2 additions and 0 deletions

View File

@ -149,6 +149,7 @@ static const H5E_minor_mesg_t H5E_minor_mesg_g[] = {
/* Property list errors */
{H5E_CANTGET, "Can't get value"},
{H5E_CANTSET, "Can't set value"},
{H5E_DUPCLASS, "Duplicate class name in parent class"},
/* Parallel MPI errors */
{H5E_MPI, "Some MPI function failed"},

View File

@ -189,6 +189,7 @@ typedef enum H5E_minor_t {
/* Property list errors */
H5E_CANTGET, /*Can't get value */
H5E_CANTSET, /*Can't set value */
H5E_DUPCLASS, /*Duplicate class name in parent class */
/* Parallel errors */
H5E_MPI, /*some MPI function failed */