00001 00002 #ifndef CCommException_h 00003 #define CCommException_h 1 00004 00005 // CjicException 00006 #include "jic/exc/CjicException.hpp" 00007 00008 // Excepcion que se lanzara cuando haya algun error en las 00009 // comunicaciones 00010 00011 class CCommException : public CjicException 00012 { 00013 00014 public: 00015 CCommException (const string& strDesc); 00016 00017 virtual ~CCommException(); 00018 00019 // Additional Public Declarations 00020 00021 protected: 00022 // Additional Protected Declarations 00023 00024 private: 00025 // Additional Private Declarations 00026 00027 private: 00028 // Additional Implementation Declarations 00029 00030 }; 00031 00032 // Class CCommException 00033 00034 inline CCommException::CCommException (const string& strDesc) 00035 : CjicException(strDesc) 00036 { 00037 } 00038 00039 inline CCommException::~CCommException() 00040 { 00041 } 00042 00043 #endif