'Is there a way to hide autodoc of exceptions and save methods?

I'm documenting a huge Django project and would like to have an option to hide autogenerated Django stuff like below. Is it something I have to "deal with" or is there a setting I haven't found yet?

I document with:

.. automodule:: module.models
    :members:

and get things like below, which would be good if I had those overriden, but they're not:

exception DoesNotExist

exception MultipleObjectsReturned

save(*args, **kwargs):...


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source