00001 00018 #ifndef _CMS_INVALICLIENTIDEXCEPTION_H_ 00019 #define _CMS_INVALICLIENTIDEXCEPTION_H_ 00020 00021 #include <cms/Config.h> 00022 #include <cms/CMSException.h> 00023 00024 namespace cms { 00025 00032 class CMS_API InvalidClientIdException : public CMSException { 00033 public: 00034 00035 InvalidClientIdException(); 00036 00037 InvalidClientIdException(const InvalidClientIdException& ex); 00038 00039 InvalidClientIdException(const std::string& message); 00040 00041 InvalidClientIdException(const std::string& message, const std::exception* cause); 00042 00043 InvalidClientIdException(const std::string& message, const std::exception* cause, 00044 const std::vector<std::pair<std::string, int> >& stackTrace); 00045 00046 virtual ~InvalidClientIdException() throw(); 00047 00048 virtual InvalidClientIdException* clone(); 00049 00050 }; 00051 00052 } 00053 00054 #endif /*_CMS_INVALICLIENTIDEXCEPTION_H_*/
1.6.1