| 52 | public: |
| 53 | explicit LocalSimpleException(const char *m) : message{m} {} |
| 54 | const char *what() const noexcept override { return message.c_str(); } |
| 55 | |
| 56 | private: |
| 57 | std::string message = ""; |
nothing calls this directly
no outgoing calls
no test coverage detected