summaryrefslogtreecommitdiffstats
path: root/c++/examples/h5tutr_rdwt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'c++/examples/h5tutr_rdwt.cpp')
-rw-r--r--c++/examples/h5tutr_rdwt.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/c++/examples/h5tutr_rdwt.cpp b/c++/examples/h5tutr_rdwt.cpp
index 5ab7ccc..4c9d49e 100644
--- a/c++/examples/h5tutr_rdwt.cpp
+++ b/c++/examples/h5tutr_rdwt.cpp
@@ -58,14 +58,14 @@ int main (void)
// catch failure caused by the H5File operations
catch(FileIException error)
{
- error.printError();
+ error.printErrorStack();
return -1;
}
// catch failure caused by the DataSet operations
catch(DataSetIException error)
{
- error.printError();
+ error.printErrorStack();
return -1;
}