| 4385 | exception(int id_, const char* what_arg) : id(id_), m(what_arg) {} // NOLINT(bugprone-throw-keyword-missing) |
| 4386 | |
| 4387 | static std::string name(const std::string& ename, int id_) |
| 4388 | { |
| 4389 | return concat("[json.exception.", ename, '.', std::to_string(id_), "] "); |
| 4390 | } |
| 4391 | |
| 4392 | static std::string diagnostics(std::nullptr_t /*leaf_element*/) |
| 4393 | { |
no test coverage detected