| 217 | __attribute__((format(printf, 2, 3))) |
| 218 | Exception(const char* format, ...); |
| 219 | Exception(const std::string& msg) : msg(msg) {} |
| 220 | const char* what() const noexcept override { |
| 221 | return msg.c_str(); |
| 222 | } |
nothing calls this directly
no outgoing calls
no test coverage detected