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

17 lines
288 B
C++

#ifndef __ERROR_HPP
#define __ERROR_HPP
#include <string>
class Error
{
public:
Error (std::string const& msg) : myText(msg) {};
virtual const std::string & getMessage() const { return myText; };
private:
std::string myText;
};
#endif // __ERROR_HPP