Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #ifndef _LOG4CPP_CONFIGURATOR_HH
00009 #define _LOG4CPP_CONFIGURATOR_HH
00010
00011 #ifdef _MSC_VER
00012 # pragma warning( disable: 4275 ) // non dll-interface structXXX used as base
00013 #endif
00014
00015 #include <log4cpp/Portability.hh>
00016 #include <log4cpp/Export.hh>
00017 #include <string>
00018 #include <stdexcept>
00019
00020 LOG4CPP_NS_BEGIN
00021
00025 class LOG4CPP_EXPORT ConfigureFailure : public std::runtime_error {
00026 public:
00031 ConfigureFailure(const std::string& reason);
00032 };
00033
00034 LOG4CPP_NS_END
00035
00036
00037 #endif // _LOG4CPP_CONFIGURATOR_HH