DRDE/AusRegEPPTK/session/LoginException.hpp

15 lines
334 B
C++

#ifndef __LOGIN_EXCEPTION_HPP
#define __LOGIN_EXCEPTION_HPP
#include "common/EPPException.hpp"
class LoginException : public EPPException
{
public:
LoginException(const std::string& msg = "Authentication failure in login")
: EPPException(msg) { }
EPP_EXCEPTION(LoginException);
};
#endif // __LOGIN_EXCEPTION_HPP