From 10affea371406c0ae4c080e5a19390a8e9bd154b Mon Sep 17 00:00:00 2001 From: Malfurious Date: Tue, 22 Oct 2024 03:08:45 -0400 Subject: Remove unnecessary exception handler catch block Signed-off-by: Malfurious --- Compass.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/Compass.cpp b/Compass.cpp index c5d2a3d..9a27d55 100644 --- a/Compass.cpp +++ b/Compass.cpp @@ -112,9 +112,6 @@ void Compass::perform(int argc, char* argv[]) { catch (const int e) { std::cerr << ERR_GENERIC << std::endl; } - catch (const CryptoPP::Exception& e) { - std::cerr << ERR_GENERIC << std::endl; - } catch (const double e) { std::cerr << ERR_INPUT << std::endl; } -- cgit v1.2.3