An exception raised when code tries to read from a canceled future.
| 56 | |
| 57 | |
| 58 | class CanceledFutureError(Exception): |
| 59 | """An exception raised when code tries to read from a canceled future.""" |
| 60 | |
| 61 | def __init__(self): |
| 62 | super().__init__("An error occurred reading results from a canceled request") |
| 63 | |
| 64 | |
| 65 | class InvalidAPIResponseError(_api.ResourceBadResponseError): |
no outgoing calls
no test coverage detected