| 2161 | { |
| 2162 | public: |
| 2163 | static other_error create(int id_, const std::string& what_arg) |
| 2164 | { |
| 2165 | std::string w = exception::name("other_error", id_) + what_arg; |
| 2166 | return other_error(id_, w.c_str()); |
| 2167 | } |
| 2168 | |
| 2169 | private: |
| 2170 | JSON_HEDLEY_NON_NULL(3) |
nothing calls this directly
no test coverage detected