From 1c29ef3e4b871508bb2defd6b47b9a745547b626 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 13 Nov 2021 19:23:24 -0500 Subject: refactor: specialize exceptions CoverageException is fine as a base class, but not good to use for raising (and catching sometimes). Introduce specialized exceptions that allow third-party tools to integrate better. --- doc/api.rst | 3 +++ 1 file changed, 3 insertions(+) (limited to 'doc/api.rst') diff --git a/doc/api.rst b/doc/api.rst index f5112165..7d04f03e 100644 --- a/doc/api.rst +++ b/doc/api.rst @@ -26,6 +26,9 @@ interface. For example, a simple use would be:: cov.html_report() +Any of the methods can raise specialized exceptions described in +:ref:`api_exceptions`. + Coverage.py supports plugins that can change its behavior, to collect information from non-Python files, or to perform complex configuration. See :ref:`api_plugin` for details. -- cgit v1.2.1