Delete unneeded directory
[jabaws.git] / website / archive / binaries / mac / src / clustalw / src / general / SequenceNotFoundException.h
diff --git a/website/archive/binaries/mac/src/clustalw/src/general/SequenceNotFoundException.h b/website/archive/binaries/mac/src/clustalw/src/general/SequenceNotFoundException.h
deleted file mode 100644 (file)
index 867450a..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-/**
- * Author: Mark Larkin
- * 
- * Copyright (c) 2007 Des Higgins, Julie Thompson and Toby Gibson.  
- */
-#ifndef SEQUENCENOTFOUNDEXCEPTION_H
-#define SEQUENCENOTFOUNDEXCEPTION_H
-
-// standard exceptions
-#include <iostream>
-#include <exception>
-using namespace std;
-
-class SequenceNotFoundException: public exception
-{
-  virtual const char* what() const throw ()
-  {
-    return "Could not find sequence with given id\n";
-  }
-};
-
-#endif