| 341 | { |
| 342 | public: |
| 343 | static invalid_iterator create(int id_, const std::string& what_arg) |
| 344 | { |
| 345 | std::string w = exception::name("invalid_iterator", id_) + what_arg; |
| 346 | return invalid_iterator(id_, w.c_str()); |
| 347 | } |
| 348 | |
| 349 | private: |
| 350 | invalid_iterator(int id_, const char* what_arg) |
nothing calls this directly
no test coverage detected