| 2022 | { |
| 2023 | public: |
| 2024 | static invalid_iterator create(int id_, const std::string& what_arg) |
| 2025 | { |
| 2026 | std::string w = exception::name("invalid_iterator", id_) + what_arg; |
| 2027 | return invalid_iterator(id_, w.c_str()); |
| 2028 | } |
| 2029 | |
| 2030 | private: |
| 2031 | JSON_HEDLEY_NON_NULL(3) |
nothing calls this directly
no test coverage detected