| 2612 | { |
| 2613 | public: |
| 2614 | static out_of_range create(int id_, const std::string& what_arg) |
| 2615 | { |
| 2616 | std::string w = exception::name("out_of_range", id_) + what_arg; |
| 2617 | return out_of_range(id_, w.c_str()); |
| 2618 | } |
| 2619 | |
| 2620 | private: |
| 2621 | JSON_HEDLEY_NON_NULL(3) |
nothing calls this directly
no test coverage detected