00001 00002 #ifndef CCreateException_h 00003 #define CCreateException_h 1 00004 00005 // CjicException 00006 #include "jic/exc/CjicException.hpp" 00007 00008 // Posible excepcion a generar durante la creacion de un 00009 // objeto 00010 00011 class CCreateException : public CjicException 00012 { 00013 00014 public: 00015 CCreateException (const string &strDesc); 00016 00017 virtual ~CCreateException(); 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 CCreateException 00033 00034 inline CCreateException::CCreateException (const string &strDesc) 00035 : CjicException(strDesc) 00036 { 00037 } 00038 00039 inline CCreateException::~CCreateException() 00040 { 00041 } 00042 00043 #endif