]> SALOME platform Git repositories - modules/kernel.git/blob - src/Communication/MultiCommException.hxx
Salome HOME
PR: mergefrom_BR_CCRT_11Nov04
[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