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

11 lines
232 B
C++

#ifndef __RESPONSEERROR_HPP
#define __RESPONSEERROR_HPP
#include "se/Error.hpp"
class ResponseError : public Error
{
public:
ResponseError (const std::string & msg) : Error(msg) {};
};
#endif // __RESPONSEERROR_HPP