Update mussa to build on ubuntu 10.04 with qt 4.6.2 +boost 1.40.0.1
[mussa.git] / mussa_exceptions.hpp
index 1c577f4198bc210986822ccfd47bc1a77bf39810..e85b2d98687e5a50304b09cc654c2f8349f1b0f9 100644 (file)
@@ -31,6 +31,13 @@ public:
     mussa_error(msg) {};
 };
 
+//! error doing a key lookup in the annotations class
+class annotations_key_error : public mussa_error {
+public:
+  explicit annotations_key_error(const std::string& msg) : 
+    mussa_error(msg) {};
+};
+
 //! Error loading sequence
 class sequence_load_error : public mussa_load_error
 {