#ifndef HONAEXCEPTION_H #define HONAEXCEPTION_H #include #include class HonaException : public std::exception { public: HonaException() { } virtual const char* what() const throw() { return ""; } }; #endif //HONAEXCEPTION_H