X-Git-Url: http://woldlab.caltech.edu/gitweb/?a=blobdiff_plain;f=mussa_exceptions.hpp;fp=mussa_exceptions.hpp;h=2f327b73859a54c579ad9bee64939ff18c81eb4f;hb=f53ddd693fe894f0f6ab117a01064a9155daf5d6;hp=aa920b1afda7fb157fcfab4b2d489453184b7825;hpb=a4e078e9172610b3c28ef8ac3a9983ce0290cf3a;p=mussa.git diff --git a/mussa_exceptions.hpp b/mussa_exceptions.hpp index aa920b1..2f327b7 100644 --- a/mussa_exceptions.hpp +++ b/mussa_exceptions.hpp @@ -64,4 +64,12 @@ public: explicit motif_normalize_error(const std::string& msg) : mussa_error(msg) {}; }; + +//! ConservedPath::nextTo had two paths that weren't the same size +class conserved_path_size_mismatch : public mussa_error +{ +public: + explicit conserved_path_size_mismatch(const std::string& msg) : + mussa_error(msg) {}; +}; #endif