Returns true iff the status indicates a NotSupportedError.
| 67 | |
| 68 | // Returns true iff the status indicates a NotSupportedError. |
| 69 | bool IsNotSupportedError() const { return code() == kNotSupported; } |
| 70 | |
| 71 | // Returns true iff the status indicates an InvalidArgument. |
| 72 | bool IsInvalidArgument() const { return code() == kInvalidArgument; } |