Salome HOME
58a94182fcc553752ca017fde06dcfd5b0263c7c
[modules/yacs.git] / src / engine / ConversionException.hxx
1 #ifndef __CONVERSIONEXCEPTION_HXX__
2 #define __CONVERSIONEXCEPTION_HXX__
3
4 #include "Exception.hxx"
5
6 #include <string>
7
8 namespace YACS
9 {
10   namespace ENGINE
11   {    
12     class ConversionException : public Exception
13     {
14     public:
15       ConversionException(const std::string& what);
16       virtual ~ConversionException() throw();
17     private:
18       static const char TYPEOFEXCEPTION[];
19     };
20   }
21 }
22
23 #endif