]> SALOME platform Git repositories - modules/yacs.git/blob - src/engine/ConversionException.hxx
Salome HOME
copy tag mergefrom_BR_V0_1_CC_Salome_04oct07
[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