| 2367 | exception(int id_, const char* what_arg) : id(id_), m(what_arg) {} |
| 2368 | |
| 2369 | static std::string name(const std::string& ename, int id_) |
| 2370 | { |
| 2371 | return "[json.exception." + ename + "." + std::to_string(id_) + "] "; |
| 2372 | } |
| 2373 | |
| 2374 | private: |
| 2375 | /// an exception object as storage for error messages |
nothing calls this directly
no outgoing calls
no test coverage detected