Salome HOME
This commit was generated by cvs2git to track changes on a CVS vendor
[modules/yacs.git] / src / Utils / Utils_CommException.cxx
1 using namespace std;
2 //=============================================================================
3 // File      : Utils_CommException.cxx
4 // Created   : lun nov  5 16:04:47 CET 2001
5 // Author    : Antoine YESSAYAN, EDF
6 // Project   : SALOME
7 // Copyright : EDF 2001
8 // $Header$
9 //=============================================================================
10
11 using namespace std;
12 # include "Utils_CommException.hxx"
13
14 CommException::CommException( void ): SALOME_Exception( "CommException" )
15 {
16 }
17
18
19 CommException::CommException( const char *texte ): SALOME_Exception( texte )
20 {
21 }
22
23
24 CommException::CommException( const CommException &ex ): SALOME_Exception( ex )
25 {
26 }
27
28
29 CommException::~CommException() throw ()
30 {
31 }