| 55 | |
| 56 | public: |
| 57 | explicit DataException(const char *why) : reason(why) {} |
| 58 | const char* what() const noexcept override { return reason.c_str(); } |
| 59 | explicit operator string() { return reason; } |
| 60 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected