]> SALOME platform Git repositories - modules/yacs.git/blobdiff - src/engine/ConversionException.hxx
Salome HOME
PR: merge from BR_DATACONV_PR tag "mergeto_trunk_25oct06"
[modules/yacs.git] / src / engine / ConversionException.hxx
diff --git a/src/engine/ConversionException.hxx b/src/engine/ConversionException.hxx
new file mode 100644 (file)
index 0000000..a9d2c23
--- /dev/null
@@ -0,0 +1,22 @@
+#ifndef __CONVERSIONEXCEPTION_HXX__
+#define __CONVERSIONEXCEPTION_HXX__
+
+#include "Exception.hxx"
+
+#include <string>
+
+namespace YACS
+{
+  namespace ENGINE
+  {    
+    class ConversionException : public Exception
+    {
+    public:
+      ConversionException(const std::string& what);
+    private:
+      static const char TYPEOFEXCEPTION[];
+    };
+  }
+}
+
+#endif