00001 00002 #ifndef CMessageException_h 00003 #define CMessageException_h 1 00004 00005 // CjicException 00006 #include "jic/exc/CjicException.hpp" 00007 00008 // Excepcion que se lanzara cuando haya algun error el 00009 // mensaje 00010 00011 class CMessageException : public CjicException 00012 { 00013 00014 public: 00015 CMessageException (const string& strDesc); 00016 00017 virtual ~CMessageException(); 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 CMessageException 00033 00034 inline CMessageException::CMessageException (const string& strDesc) 00035 : CjicException(strDesc) 00036 { 00037 } 00038 00039 inline CMessageException::~CMessageException() 00040 { 00041 } 00042 00043 #endif