aboutsummaryrefslogtreecommitdiffstats
path: root/checks/check.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-03-04 03:03:23 +0000
committerlloyd <[email protected]>2010-03-04 03:03:23 +0000
commit5ada70d51341b4b11d7220747475d5506e7110b3 (patch)
treed6a4e0f7f58ba61804dbeab05beb6072413f8d72 /checks/check.cpp
parent1b0f06037e00d426f37c9180f02f1ec2157644bd (diff)
Some botan exception throws are plain STL exceptions
Diffstat (limited to 'checks/check.cpp')
-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(...)