]> SALOME platform Git repositories - modules/kernel.git/blob - src/Communication/MultiCommException.hxx
Salome HOME
PR: merge from branch BR_UT_V310a2 tag BR_UT_V310a2_20051115
[modules/kernel.git] / src / Communication / MultiCommException.hxx
1 #ifndef _MULTICOMMEXCEPTION_HXX_
2 #define _MULTICOMMEXCEPTION_HXX_
3
4 #include <string>
5
6
7 class MultiCommException {
8 private:
9   std::string _message;
10 public:
11   MultiCommException(const char *message);
12   const char *what() const;
13 };
14
15 #endif
16