summaryrefslogtreecommitdiffstats
path: root/c++/src/H5Exception.h
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2003-07-26 02:55:17 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2003-07-26 02:55:17 (GMT)
commitb4b2b55d33be1c4f1c33aaf58294281a93b7da39 (patch)
tree6b6afd57c425ef4003236bbc91115e689fe70f4e /c++/src/H5Exception.h
parent4cc883a96035714268d25ef5bb6d4df86ad25f2c (diff)
downloadhdf5-b4b2b55d33be1c4f1c33aaf58294281a93b7da39.zip
hdf5-b4b2b55d33be1c4f1c33aaf58294281a93b7da39.tar.gz
hdf5-b4b2b55d33be1c4f1c33aaf58294281a93b7da39.tar.bz2
[svn-r7264] Purpose: Error API gradual checkin
Platforms tested: h5committested
Diffstat (limited to 'c++/src/H5Exception.h')
-rw-r--r--c++/src/H5Exception.h6
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;