DRDE/AusRegEPPTK/se/ResponseError.hpp

12 lines
232 B
C++
Raw Normal View History

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