diff options
Diffstat (limited to 'c++/src/H5Exception.h')
-rw-r--r-- | c++/src/H5Exception.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/c++/src/H5Exception.h b/c++/src/H5Exception.h index 5f159e8..e7d75d8 100644 --- a/c++/src/H5Exception.h +++ b/c++/src/H5Exception.h @@ -40,11 +40,13 @@ class H5_DLLCPP Exception { // Returns the character string that describes an error specified by // a major error number. - string getMajorString( H5E_major_t major_num ) const; + //string getMajorString( H5E_major_t major_num ) const; + string getMajorString( hid_t err_major_id ) const; // Returns the character string that describes an error specified by // a minor error number. - string getMinorString( H5E_minor_t minor_num ) const; + //string getMinorString( H5E_minor_t minor_num ) const; + string getMinorString( hid_t err_minor_id ) const; // Returns the detailed message set at the time the exception is thrown string getDetailMsg() const; |