diff options
Diffstat (limited to 'src/H5Epublic.h')
-rw-r--r-- | src/H5Epublic.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/H5Epublic.h b/src/H5Epublic.h index b520745..d390f22 100644 --- a/src/H5Epublic.h +++ b/src/H5Epublic.h @@ -208,7 +208,14 @@ typedef enum H5E_minor_t { H5E_CANTRECV, /*can't receive messages from processes */ H5E_CANTSENDMDATA, /*can't send metadata message */ H5E_CANTCHANGE, /*can't register change on server */ - H5E_CANTALLOC /*can't allocate from file */ + H5E_CANTALLOC, /*can't allocate from file */ + + /* I/O pipeline errors */ + H5E_NOFILTER, /*requested filter is not available */ + H5E_CALLBACK, /*callback failed */ + H5E_CANAPPLY, /*error from filter "can apply" callback */ + H5E_SETLOCAL /*error from filter "set local" callback */ + } H5E_minor_t; /* Information about an error */ |