DRDE/ACTK1_0/se/GreetingError.hpp

11 lines
207 B
C++
Raw Permalink Normal View History

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