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