DRDE/ACTK1_0/session/ConfigurationException.hpp
Ren RenJuan 681188a22d push
2014-01-08 05:00:04 +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