This module contains the set of Requests' exceptions.
Class | ConnectionError |
A Connection error occurred. |
Class | ConnectTimeout |
The request timed out while trying to connect to the remote server. |
Class | HTTPError |
An HTTP error occurred. |
Class | ReadTimeout |
The server did not send any data in the allotted amount of time. |
Class | RequestException |
There was an ambiguous exception that occurred while handling your request. |
Class | Timeout |
The request timed out. |
Class | TooManyRedirects |
Too many redirects. |
Class | URLRequired |
A valid URL is required to make a request. |
Class | ChunkedEncodingError |
The server declared chunked encoding but sent an invalid chunk. |
Class | ContentDecodingError |
Failed to decode response content. |
Class | FileModeWarning |
A file was opened in text mode, but Requests determined its binary length. |
Class | InvalidHeader |
The header value provided was somehow invalid. |
Class | InvalidJSONError |
A JSON error occurred. |
Class | InvalidProxyURL |
The proxy URL provided is invalid. |
Class | InvalidSchema |
The URL scheme provided is either invalid or unsupported. |
Class | InvalidURL |
The URL provided was somehow invalid. |
Class | JSONDecodeError |
Couldn't decode the text into json |
Class | MissingSchema |
The URL scheme (e.g. http or https) is missing. |
Class | ProxyError |
A proxy error occurred. |
Class | RequestsDependencyWarning |
An imported dependency doesn't match the expected version range. |
Class | RequestsWarning |
Base warning for Requests. |
Class | RetryError |
Custom retries logic failed |
Class | SSLError |
An SSL error occurred. |
Class | StreamConsumedError |
The content for this response was already consumed. |
Class | UnrewindableBodyError |
Requests encountered an error when trying to rewind a body. |