| 2511 | { |
| 2512 | public: |
| 2513 | static invalid_iterator create(int id_, const std::string& what_arg) |
| 2514 | { |
| 2515 | std::string w = exception::name("invalid_iterator", id_) + what_arg; |
| 2516 | return invalid_iterator(id_, w.c_str()); |
| 2517 | } |
| 2518 | |
| 2519 | private: |
| 2520 | JSON_HEDLEY_NON_NULL(3) |
nothing calls this directly
no test coverage detected