| 58 | struct Error : public std::exception |
| 59 | { |
| 60 | Error (const char* desc) : description (desc) {} |
| 61 | |
| 62 | const char* what() const noexcept override { return description; } |
| 63 | const char* description; |
nothing calls this directly
no outgoing calls
no test coverage detected