Salome HOME
PR: mergefrom_BR_GEAY_05Nov04
[modules/kernel.git] / src / Communication / MultiCommException.cxx
1 #include "MultiCommException.hxx"
2
3 MultiCommException::MultiCommException(const char *message)
4 {
5   _message=message;
6 }
7
8 const char *MultiCommException::what() const
9 {
10   return _message.c_str();
11 }