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

10 lines
207 B
C++

#ifndef __GREETINGERROR_HPP
#define __GREETINGERROR_HPP
class GreetingError : public Error
{
public:
GreetingError (const std::string & msg) : Error(msg) {};
};
#endif // __GREETINGERROR_HPP