| 437 | { |
| 438 | public: |
| 439 | static other_error create(int id_, const std::string& what_arg) |
| 440 | { |
| 441 | std::string w = exception::name("other_error", id_) + what_arg; |
| 442 | return other_error(id_, w.c_str()); |
| 443 | } |
| 444 | |
| 445 | private: |
| 446 | other_error(int id_, const char* what_arg) : exception(id_, what_arg) {} |
nothing calls this directly
no test coverage detected