DRDE/ACTK1_0/session/CommandFailedException.hpp
Ren RenJuan 681188a22d push
2014-01-08 05:00:04 +00:00

16 lines
430 B
C++

#ifndef __COMMAND_FAILED_EXCEPTION_HPP
#define __COMMAND_FAILED_EXCEPTION_HPP
#include "common/EPPException.hpp"
#include "common/ErrorPkg.hpp"
class CommandFailedException : public EPPException
{
public:
CommandFailedException(
const std::string& msg = ErrorPkg::getMessage("EPP.server.cmdfail"))
: EPPException(msg) { }
EPP_EXCEPTION(CommandFailedException);
};
#endif // __COMMAND_FAILED_EXCEPTION_HPP