X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=mussa.git;a=blobdiff_plain;f=mussa_exceptions.hpp;h=1c577f4198bc210986822ccfd47bc1a77bf39810;hp=3c44e6061705d1c370d4158eb8aa70791e6fd23f;hb=75496e2c562d728af983c347527270eba360c6ee;hpb=b9755e1974201ff513c66b0fd684bde330c6fff6 diff --git a/mussa_exceptions.hpp b/mussa_exceptions.hpp index 3c44e60..1c577f4 100644 --- a/mussa_exceptions.hpp +++ b/mussa_exceptions.hpp @@ -71,6 +71,14 @@ public: mussa_error(msg) {}; }; +//! Invalid strand identifier +class sequence_invalid_strand : public mussa_error +{ +public: + explicit sequence_invalid_strand(const std::string& msg) : + mussa_error(msg) {}; +}; + //! Error loading sequence annotation class annotation_load_error : public sequence_load_error {