diff options
Diffstat (limited to 'coverage/misc.py')
-rw-r--r-- | coverage/misc.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/coverage/misc.py b/coverage/misc.py index 8a8b5117..5ef982c8 100644 --- a/coverage/misc.py +++ b/coverage/misc.py @@ -49,3 +49,7 @@ def format_lines(statements, lines): class CoverageException(Exception): """An exception specific to Coverage.""" pass + +class NoSource(CoverageException): + """Used to indicate we couldn't find the source for a module.""" + pass |