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