Returns true iff the status indicates an IOError.
| 64 | |
| 65 | // Returns true iff the status indicates an IOError. |
| 66 | bool IsIOError() const { return code() == kIOError; } |
| 67 | |
| 68 | // Returns true iff the status indicates a NotSupportedError. |
| 69 | bool IsNotSupportedError() const { return code() == kNotSupported; } |