DRDE/ACTK1_0/common/ConfigurationError.hpp

18 lines
418 B
C++
Raw Permalink Normal View History

#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