Returns true iff the status indicates a NotFound error.
| 58 | |
| 59 | // Returns true iff the status indicates a NotFound error. |
| 60 | bool IsNotFound() const { return code() == kNotFound; } |
| 61 | |
| 62 | // Returns true iff the status indicates a Corruption error. |
| 63 | bool IsCorruption() const { return code() == kCorruption; } |