]> SALOME platform Git repositories - tools/solverlab.git/blob - CDMATH/base/inc/CdmathException.hxx
Salome HOME
Renamed test names
[tools/solverlab.git] / CDMATH / base / inc / CdmathException.hxx
1 #ifndef __CDMATHEXCEPTION_HXX__
2 #define __CDMATHEXCEPTION_HXX__
3
4 #include <string>
5 #include <exception>
6
7
8 class CdmathException : public std::exception
9 {
10         public:
11         CdmathException(std::string reason);
12         CdmathException(std::string reason, std::string file, int line);
13     ~CdmathException() throw ();
14     const char *what() const throw();
15   protected:
16     std::string _reason;
17   };
18
19 #endif