Salome HOME
Porting to Mandrake 10.1 and new products:
[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