| 4314 | exception(int id_, const char* what_arg) : id(id_), m(what_arg) {} // NOLINT(bugprone-throw-keyword-missing) |
| 4315 | |
| 4316 | static std::string name(const std::string& ename, int id_) |
| 4317 | { |
| 4318 | return concat("[json.exception.", ename, '.', std::to_string(id_), "] "); |
| 4319 | } |
| 4320 | |
| 4321 | static std::string diagnostics(std::nullptr_t /*leaf_element*/) |
| 4322 | { |
no test coverage detected