Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/user/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -565,6 +565,12 @@ raised.
If a request exceeds the configured number of maximum redirections, a
:exc:`~requests.exceptions.TooManyRedirects` exception is raised.

Because :func:`requests.request()` is the underlying entry point for all
helper methods, the exceptions described above (and any other
:exc:`requests.exceptions.RequestException` subclasses) may be raised directly
by :func:`requests.request()` as well. Wrap calls to the helper functions or
:func:`requests.request()` itself if you need to handle those errors explicitly.

All exceptions that Requests explicitly raises inherit from
:exc:`requests.exceptions.RequestException`.

Expand Down