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

13 lines
381 B
C++

#ifndef __SESSION_LIMIT_EXCEEDED_EXCEPTION_HPP
#define __SESSION_LIMIT_EXCEEDED_EXCEPTION_HPP
#include "session/LoginException.hpp"
class SessionLimitExceededException : public LoginException
{
public:
SessionLimitExceededException(const std::string &msg = "Session Limit Exceeded")
: LoginException(msg) { };
};
#endif // __SESSION_LIMIT_EXCEEDED_EXCEPTION_HPP