Salome HOME
0f5466c86b6ece31012c8923f000ec14c4f8dda8
[modules/kernel.git] / src / Communication / MultiCommException.hxx
1 #ifndef _MULTICOMMEXCEPTION_HXX_
2 #define _MULTICOMMEXCEPTION_HXX_
3
4 #include <string>
5
6 using namespace std;
7
8 class MultiCommException {
9 private:
10   string _message;
11 public:
12   MultiCommException(const char *message);
13   const char *what() const;
14 };
15
16 #endif
17