Delete unneeded directory
[jabaws.git] / website / archive / binaries / mac / src / clustalw / src / general / VectorOutOfRange.h
diff --git a/website/archive/binaries/mac/src/clustalw/src/general/VectorOutOfRange.h b/website/archive/binaries/mac/src/clustalw/src/general/VectorOutOfRange.h
deleted file mode 100644 (file)
index 726229f..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-/**
- * Author: Mark Larkin
- * 
- * Copyright (c) 2007 Des Higgins, Julie Thompson and Toby Gibson.  
- */
-#include <stdexcept>
-#include <exception>
-namespace clustalw
-{
-
-class VectorOutOfRange : public std::exception
-{
-    public:
-        VectorOutOfRange(std::string vectorName, int index, int max)
-            : _name(vectorName), _index(index), _max(max)
-        {}
-        ~VectorOutOfRange() throw();
-        int index(){return _index;}
-        int max(){return _max;}
-        const char* what() const throw();
-        const char* what();
-    private:
-        std::string _name;
-       int _index;
-        int _max;
- };
-
-}
-