From d8f56eb5e7dfa41a21eb67503e570fd768d52109 Mon Sep 17 00:00:00 2001 From: Jaron Kent-Dobias Date: Sat, 27 Apr 2019 18:06:36 -0400 Subject: removed exception from analysis_tools --- src/analysis_tools.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/analysis_tools.cpp b/src/analysis_tools.cpp index dea20f0..2ef74c6 100644 --- a/src/analysis_tools.cpp +++ b/src/analysis_tools.cpp @@ -1,14 +1,6 @@ #include "analysis_tools.hpp" -class badcycleException: public std::exception -{ - virtual const char* what() const throw() - { - return "Could not find a valid cycle on the broken system."; - } -} badcycleex; - template bool is_shorter(const std::list &l1, const std::list &l2) { return l1.size() < l2.size(); -- cgit v1.2.3-54-g00ecf