| 83 | class MyException6 : public std::exception { |
| 84 | public: |
| 85 | explicit MyException6(const char *m) : message{m} {} |
| 86 | const char *what() const noexcept override { return message.c_str(); } |
| 87 | |
| 88 | private: |
nothing calls this directly
no outgoing calls
no test coverage detected