Coverage for lobster/tools/codebeamer/exceptions.py: 100%
3 statements
« prev ^ index » next coverage.py v7.10.2, created at 2025-08-06 09:51 +0000
« prev ^ index » next coverage.py v7.10.2, created at 2025-08-06 09:51 +0000
1class QueryException(Exception):
2 """This exception is raised when a query to the Codebeamer API fails."""
5class NotFileException(Exception):
6 """This exception is raised when a file is expected but the path does not point to
7 a file.
8 """
11class MismatchException(Exception):
12 """This exception is raised when there is a mismatch in the data retrieved from a
13 codebeamer api call.
14 For example, query page 7 has been requested, but the response data indicates
15 page 8.
16 """