| 91 | } |
| 92 | |
| 93 | inline Status NotFoundError(const std::string& message) { |
| 94 | return Status(StatusCode::kNotFound, message); |
| 95 | } |
| 96 | |
| 97 | inline Status OutOfRangeError(const std::string& message) { |
| 98 | return Status(StatusCode::kOutOfRange, message); |
no test coverage detected