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