Salome HOME
Porting to Mandrake 10.1 and new products:
[modules/kernel.git] / src / Communication / MultiCommException.cxx
1 #include "MultiCommException.hxx"
2 using namespace std;
3
4 MultiCommException::MultiCommException(const char *message)
5 {
6   _message=message;
7 }
8
9 const char *MultiCommException::what() const
10 {
11   return _message.c_str();
12 }