]> SALOME platform Git repositories - modules/kernel.git/blob - src/Communication/MultiCommException.cxx
Salome HOME
d649d965258e54760df28c014fa915f6b3b06d97
[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 }