| 87 | struct StringError : ErrorInfoBase { |
| 88 | std::string str; |
| 89 | StringError(std::string str) : str(std::move(str)) {} |
| 90 | std::string message(std::string_view) const noexcept override { return str; } |
| 91 | }; |
| 92 | struct ErrorCodeError : ErrorInfoBase { |
nothing calls this directly
no outgoing calls
no test coverage detected