DRDE/AusRegEPPTK/session/LogoutException.hpp

16 lines
347 B
C++
Raw Normal View History

2013-12-31 19:36:07 +00:00
#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