| 41 | class LocalException : public std::exception { |
| 42 | public: |
| 43 | explicit LocalException(const char *m) : message{m} {} |
| 44 | const char *what() const noexcept override { return message.c_str(); } |
| 45 | |
| 46 | private: |
nothing calls this directly
no outgoing calls
no test coverage detected