| 30 | std::string m_message; |
| 31 | public: |
| 32 | ExceptionBase(std::string message) : m_message(message) { } |
| 33 | virtual ~ExceptionBase() noexcept {} |
| 34 | virtual const char* what() const noexcept { |
| 35 | // return custom message |
nothing calls this directly
no outgoing calls
no test coverage detected