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