| 301 | { |
| 302 | public: |
| 303 | static invalid_iterator create(int id_, const std::string& what_arg) |
| 304 | { |
| 305 | std::string w = exception::name("invalid_iterator", id_) + what_arg; |
| 306 | return invalid_iterator(id_, w.c_str()); |
| 307 | } |
| 308 | |
| 309 | private: |
| 310 | invalid_iterator(int id_, const char* what_arg) |
nothing calls this directly
no test coverage detected