| 56 | } |
| 57 | |
| 58 | ErrorValue NoSuchKeyError(absl::string_view key) { |
| 59 | return ErrorValue( |
| 60 | absl::NotFoundError(absl::StrCat("Key not found in map : ", key))); |
| 61 | } |
| 62 | |
| 63 | ErrorValue NoSuchTypeError(absl::string_view type) { |
| 64 | return ErrorValue( |
no test coverage detected