| 94 | } |
| 95 | |
| 96 | bool IsNoSuchKey(const ErrorValue& value) { |
| 97 | return absl::IsNotFound(value.NativeValue()) && |
| 98 | absl::StartsWith(value.NativeValue().message(), |
| 99 | "Key not found in map"); |
| 100 | } |
| 101 | |
| 102 | std::string ErrorValue::DebugString() const { |
| 103 | return ErrorDebugString(NativeValue()); |
no test coverage detected