Next version of JABA
[jabaws.git] / binaries / src / clustalw / src / general / SequenceNotFoundException.h
1 /**
2  * Author: Mark Larkin
3  * 
4  * Copyright (c) 2007 Des Higgins, Julie Thompson and Toby Gibson.  
5  */
6 #ifndef SEQUENCENOTFOUNDEXCEPTION_H
7 #define SEQUENCENOTFOUNDEXCEPTION_H
8
9 // standard exceptions
10 #include <iostream>
11 #include <exception>
12 using namespace std;
13
14 class SequenceNotFoundException: public exception
15 {
16   virtual const char* what() const throw ()
17   {
18     return "Could not find sequence with given id\n";
19   }
20 };
21
22 #endif