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

15 lines
347 B
C++

#ifndef __LOGOUT_EXCEPTION_HPP
#define __LOGOUT_EXCEPTION_HPP
#include "common/EPPException.hpp"
#include <string>
class LogoutException : public EPPException
{
public:
LogoutException(const std::string &msg = "Error during logout.")
: EPPException(msg) { }
EPP_EXCEPTION(LogoutException);
};
#endif // __LOGIN_EXCEPTION_HPP