summaryrefslogtreecommitdiffstats
path: root/c++/src
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2014-04-25 21:54:22 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2014-04-25 21:54:22 (GMT)
commit1a5d6e47d2ba566e29bfc157fffec67a4cd69983 (patch)
tree0694c83da70a7f105ff56b3ccf0f6d7a13782ba7 /c++/src
parent67641211a89b7244bc5e1d76438509b49ceac9dc (diff)
downloadhdf5-1a5d6e47d2ba566e29bfc157fffec67a4cd69983.zip
hdf5-1a5d6e47d2ba566e29bfc157fffec67a4cd69983.tar.gz
hdf5-1a5d6e47d2ba566e29bfc157fffec67a4cd69983.tar.bz2
[svn-r25116] Description:
- Put back Exception::printError for backward compatibility - Added static member function Exception::printErrorStack to print error stack without an instance of Exception. Platforms tested: Linux/ppc64 (ostrich) Linux/32 2.6 (jam) SunOS 5.11 (emu)
Diffstat (limited to 'c++/src')
-rw-r--r--c++/src/H5Exception.cpp27
1 files changed, 22 insertions, 5 deletions
diff --git a/c++/src/H5Exception.cpp b/c++/src/H5Exception.cpp
index 7385341..2d18825 100644
--- a/c++/src/H5Exception.cpp
+++ b/c++/src/H5Exception.cpp
@@ -295,16 +295,33 @@ const char* Exception::getCFuncName() const
}
//--------------------------------------------------------------------------
-// Function: Exception::printError (static)
+// Function: Exception::printErrorStack (static)
///\brief Prints the error stack in a default manner.
+///\param stream - IN: File pointer, default to stderr
+///\param err_stack - IN: Error stack ID, default to H5E_DEFAULT(0)
+// Programmer Binh-Minh Ribler - Apr, 2014 (1.8.13)
+//--------------------------------------------------------------------------
+void Exception::printErrorStack(FILE* stream, hid_t err_stack)
+{
+ herr_t ret_value = H5Eprint2(err_stack, stream);
+ if( ret_value < 0 )
+ throw Exception( "Printing error stack", "H5Eprint2 failed" );
+}
+
+//--------------------------------------------------------------------------
+// Function: Exception::printError
+///\brief Prints the error stack in a default manner. This member
+/// function is replaced by the static function printErrorStack
+/// and will be removed from the next major release.
///\param stream - IN: File pointer
// Programmer Binh-Minh Ribler - 2000
+// Description:
+// This function can be removed in next major release.
+// -BMR, 2014/04/24
//--------------------------------------------------------------------------
-void Exception::printError( FILE* stream )
+void Exception::printError(FILE* stream) const
{
- herr_t ret_value = H5Eprint2( H5E_DEFAULT, stream ); // print to stderr
- if( ret_value < 0 )
- throw Exception( "Exception::printError", "H5Eprint failed" );
+ Exception::printErrorStack(stream, H5E_DEFAULT);
}
//--------------------------------------------------------------------------