DRDE/ACTK1_0/session/LogoutException.hpp

16 lines
347 B
C++
Raw Normal View History

#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