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