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

16 lines
430 B
C++

#ifndef __FATAL_SESSION_EXCEPTION_HPP
#define __FATAL_SESSION_EXCEPTION_HPP
#include "common/EPPException.hpp"
#include "common/ErrorPkg.hpp"
class FatalSessionException : public EPPException
{
public:
FatalSessionException(
const std::string &msg = ErrorPkg::getMessage("EPP.session.open.fatalerr"))
: EPPException(msg) { }
EPP_EXCEPTION(FatalSessionException);
};
#endif // __FATAL_SESSION_EXCEPTION_HPP