TBTK
Need a break? Support the development by playing Polarity Puzzles
ElementNotFoundException.h
1 #ifndef COM_DAFER45_TBTK_ELEMENT_NOT_FOUND_EXCEPTION
2 #define COM_DAFER45_TBTK_ELEMENT_NOT_FOUND_EXCEPTION
3 
4 #include "TBTK/Exception.h"
5 
6 #include <string>
7 
8 namespace TBTK{
9 
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 ~ElementNotFoundException();
25 private:
26 };
27 
28 }; //End of namespace TBTK
29 
30 #endif
TBTK::ElementNotFoundException::ElementNotFoundException
ElementNotFoundException()
TBTK::ElementNotFoundException::~ElementNotFoundException
virtual ~ElementNotFoundException()
TBTK::Exception
Definition: Exception.h:9
TBTK::ElementNotFoundException
Definition: ElementNotFoundException.h:10