TBTK
Need a break? Support the development by playing Polarity Puzzles
IndexException.h
1 #ifndef COM_DAFER45_TBTK_INDEX_EXCEPTION
2 #define COM_DAFER45_TBTK_INDEX_EXCEPTION
3 
4 #include "TBTK/Exception.h"
5 
6 #include <string>
7 
8 namespace TBTK{
9 
10 class IndexException : public Exception{
11 public:
14 
17  const std::string& function,
18  const std::string& where,
19  const std::string& message,
20  const std::string& hint
21  );
22 
24  virtual ~IndexException();
25 private:
26 };
27 
28 }; //End of namespace TBTK
29 
30 #endif
Definition: IndexException.h:10
Definition: Exception.h:9
Definition: Boolean.h:32
virtual ~IndexException()