| 2123 | { |
| 2124 | public: |
| 2125 | static out_of_range create(int id_, const std::string& what_arg) |
| 2126 | { |
| 2127 | std::string w = exception::name("out_of_range", id_) + what_arg; |
| 2128 | return out_of_range(id_, w.c_str()); |
| 2129 | } |
| 2130 | |
| 2131 | private: |
| 2132 | JSON_HEDLEY_NON_NULL(3) |
nothing calls this directly
no test coverage detected