aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--checks/check.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/checks/check.cpp b/checks/check.cpp
index 03579b51a..1f46b5b4c 100644
--- a/checks/check.cpp
+++ b/checks/check.cpp
@@ -186,15 +186,9 @@ int run_test_suite(RandomNumberGenerator& rng)
errors += do_pk_validation_tests(PK_VALIDATION_FILE, rng);
//errors += do_cvc_tests(rng);
}
- catch(Botan::Exception& e)
- {
- std::cout << "Exception caught: " << e.what() << std::endl;
- return 1;
- }
catch(std::exception& e)
{
- std::cout << "Standard library exception caught: "
- << e.what() << std::endl;
+ std::cout << "Exception: " << e.what() << std::endl;
return 1;
}
catch(...)