Salome HOME
copy tag mergefrom_BR_V0_1_CC_Salome_04oct07
[modules/yacs.git] / src / engine / ConversionException.cxx
1 #include "ConversionException.hxx"
2
3 using namespace YACS::ENGINE;
4
5 const char ConversionException::TYPEOFEXCEPTION[]="Conversion between types failed : ";
6
7
8 ConversionException::ConversionException(const std::string& what):Exception(TYPEOFEXCEPTION)
9 {
10   _what=TYPEOFEXCEPTION;
11   _what+=what;
12 }
13
14 ConversionException::~ConversionException() throw ()
15 {
16 }