| 825 | struct Error : public json_rpc::Error { |
| 826 | std::string archive_id; |
| 827 | Error(int c, const std::string &msg, const std::string &archive_id) |
| 828 | : json_rpc::Error(c, msg), archive_id(archive_id) {} |
| 829 | void seria_data_members(seria::ISeria &s) override; |
| 830 | }; |
| 831 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected