DRDE/AusRegEPPTK/common/ConfigurationError.hpp

18 lines
418 B
C++
Raw Normal View History

2013-12-31 19:36:07 +00:00
#ifndef __CONFIGURATION_ERROR_HPP
#define __CONFIGURATION_ERROR_HPP
#include "common/EPPException.hpp"
class ConfigurationError : public EPPException
{
public:
ConfigurationError (const std::string &msg)
: EPPException (msg) {};
ConfigurationError (const EPPException &other)
: EPPException (other.getMessage()) {};
EPP_EXCEPTION(ConfigurationError);
};
#endif // __CONFIGURATION_ERROR_HPP