Salome HOME
PR: what YACS means
[modules/yacs.git] / src / bases / Exception.cxx
1 #include "Exception.hxx"
2
3 using namespace YACS;
4
5 Exception::Exception(const std::string& what):_what(what)
6 {
7 }
8
9 const char *Exception::what( void ) const throw ()
10 {
11   return _what.c_str();
12 }
13
14 Exception::~Exception() throw ()
15 {
16 }