Salome HOME
PR: merge from BR_DATACONV_PR tag "mergeto_trunk_25oct06"
[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     private:
17       static const char TYPEOFEXCEPTION[];
18     };
19   }
20 }
21
22 #endif