Salome HOME
PR: mergefrom_BR_GEAY_05Nov04
[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