12345678910111213141516171819 |
- #include <ls-std/core/exception/EventNotHandledException.hpp>
- ls::std::core::EventNotHandledException::EventNotHandledException() = default;
- ls::std::core::EventNotHandledException::~EventNotHandledException() = default;
- const char *ls::std::core::EventNotHandledException::what() const noexcept
- {
- return "EventNotHandledException thrown - event was not handled - nothing happened!";
- }
|