summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMalfurious <m@lfurio.us>2024-10-22 03:08:45 -0400
committerMalfurious <m@lfurio.us>2024-10-24 06:41:41 -0400
commit10affea371406c0ae4c080e5a19390a8e9bd154b (patch)
tree6db82e0109dc987b5b021f81d4e8a0926eb75ff7
parent48006196407251eaeb0a52297e4a412d76fce086 (diff)
downloadcompass-10affea371406c0ae4c080e5a19390a8e9bd154b.tar.gz
compass-10affea371406c0ae4c080e5a19390a8e9bd154b.zip
Remove unnecessary exception handler catch block
Signed-off-by: Malfurious <m@lfurio.us>
-rw-r--r--Compass.cpp3
1 files changed, 0 insertions, 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;
}