| 8 | { |
| 9 | public: |
| 10 | explicit Trouble(std::string_view message = "There's a problem") |
| 11 | : m_message {message} |
| 12 | {} |
| 13 | std::string_view what() const { return m_message; } |
| 14 | private: |
| 15 | std::string m_message; |
nothing calls this directly
no outgoing calls
no test coverage detected