summaryrefslogtreecommitdiff
path: root/tests/giomm_ioerror/main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tests/giomm_ioerror/main.cc')
-rw-r--r--tests/giomm_ioerror/main.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/giomm_ioerror/main.cc b/tests/giomm_ioerror/main.cc
index 8aaa4298..de312f8a 100644
--- a/tests/giomm_ioerror/main.cc
+++ b/tests/giomm_ioerror/main.cc
@@ -73,9 +73,9 @@ main(int, char**)
else
std::cerr << "Gio::Error exception caught: " << ex.what() << std::endl;
}
- catch (const Glib::Exception& ex)
+ catch (const Glib::Error& ex)
{
- std::cerr << "Exception caught: " << ex.what() << std::endl;
+ std::cerr << "Glib::Error exception caught: " << ex.what() << std::endl;
return EXIT_FAILURE;
}