| 62 | class MyException4 : public std::exception { |
| 63 | public: |
| 64 | explicit MyException4(const char *m) : message{m} {} |
| 65 | const char *what() const noexcept override { return message.c_str(); } |
| 66 | |
| 67 | private: |
nothing calls this directly
no outgoing calls
no test coverage detected