DRDE/AusRegEPPTK/session/ConfigurationException.hpp
2013-12-31 19:36:07 +00:00

14 lines
347 B
C++

#ifndef __CONFIGURATION_EXCEPTION_HPP
#define __CONFIGURATION_EXCEPTION_HPP
#include "common/EPPException.hpp"
class ConfigurationException : public EPPException
{
public:
ConfigurationException (const std::string &msg)
: EPPException(msg) {};
EPP_EXCEPTION(ConfigurationException);
};
#endif // __CONFIGURATION_EXCEPTION_HPP