load and display a motif list
[mussa.git] / mussa_exceptions.hpp
index 701c5e5d56f3bd96cc073bf4b9fc703d933d69d2..53c167c40147677ba80612927d3609f262411646 100644 (file)
@@ -24,4 +24,11 @@ public:
   explicit mussa_analysis_error(const std::string& msg) : 
     std::runtime_error(msg) {};
 };
+
+class motif_normalize_error : public std::runtime_error
+{
+public:
+  explicit motif_normalize_error(const std::string& msg) : 
+    std::runtime_error(msg) {};
+};
 #endif