diff options
author | Malfurious <m@lfurio.us> | 2024-10-22 03:08:45 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2024-10-24 06:41:41 -0400 |
commit | 10affea371406c0ae4c080e5a19390a8e9bd154b (patch) | |
tree | 6db82e0109dc987b5b021f81d4e8a0926eb75ff7 /Compass.cpp | |
parent | 48006196407251eaeb0a52297e4a412d76fce086 (diff) | |
download | compass-10affea371406c0ae4c080e5a19390a8e9bd154b.tar.gz compass-10affea371406c0ae4c080e5a19390a8e9bd154b.zip |
Remove unnecessary exception handler catch block
Signed-off-by: Malfurious <m@lfurio.us>
Diffstat (limited to 'Compass.cpp')
-rw-r--r-- | Compass.cpp | 3 |
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;
}
|