| 87 | } |
| 88 | |
| 89 | inline Status InvalidArgumentError(const std::string& message) { |
| 90 | return Status(StatusCode::kInvalidArgument, message); |
| 91 | } |
| 92 | |
| 93 | inline Status NotFoundError(const std::string& message) { |
| 94 | return Status(StatusCode::kNotFound, message); |
no test coverage detected