Salome HOME
NRI : Comment unused ComponentType enum.
[modules/kernel.git] / src / Utils / Utils_CommException.hxx
1 //=============================================================================
2 // File      : Utils_CommException.hxx
3 // Created   : lun nov  5 16:04:47 CET 2001
4 // Author    : Antoine YESSAYAN, EDF
5 // Project   : SALOME
6 // Copyright : EDF 2001
7 // $Header$
8 //=============================================================================
9
10 # if  !defined ( __Utils_CommException_H__ )
11 # define __Utils_CommException_H__ )
12
13 # include "Utils_SALOME_Exception.hxx"
14
15 class CommException : public SALOME_Exception
16 {
17 public :
18         CommException( void );
19         CommException( const char *texte );
20         CommException( const CommException &ex );
21         ~CommException() throw ();
22 } ;
23
24 # endif /* # if ( !defined __Utils_CommException_H__ ) */