We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a54cc10 commit 362ca6cCopy full SHA for 362ca6c
google/api_core/retry.py
@@ -113,8 +113,11 @@ def if_exception_type_predicate(exception):
113
``INTERNAL(13)`` and its subclasses.
114
- :class:`google.api_core.exceptions.TooManyRequests` - HTTP 429
115
- :class:`google.api_core.exceptions.ServiceUnavailable` - HTTP 503
116
-- :class:`google.api_core.exceptions.ResourceExhausted` - gRPC
117
- ``RESOURCE_EXHAUSTED(8)``
+- :class:`requests.exceptions.ConnectionError`
+- :class:`requests.exceptions.ChunkedEncodingError` - The server declared
118
+ chunked encoding but sent an invalid chunk.
119
+- :class:`google.auth.exceptions.TransportError` - Used to indicate an
120
+ error occurred during an HTTP request.
121
"""
122
# pylint: enable=invalid-name
123
0 commit comments