exceptions
All Exception classes that we are using in the package.
CannotTrackError
Bases: Exception
Tracking is not possible.
Source code in mkreports/exceptions.py
54 55 56 57 |
|
ContextActiveError
Bases: Exception
The code-context is active and it should not be.
Source code in mkreports/exceptions.py
66 67 68 69 |
|
IncorrectSuffixError
Bases: Exception
An incorrect suffix was given.
Source code in mkreports/exceptions.py
60 61 62 63 |
|
PageNotExistsError
Bases: Exception
The page does not exist.
Source code in mkreports/exceptions.py
24 25 26 27 |
|
ReportExistsError
Bases: Exception
Report already exists.
Source code in mkreports/exceptions.py
6 7 8 9 |
|
ReportNotExistsError
Bases: Exception
The given path for a report does not exist.
Source code in mkreports/exceptions.py
12 13 14 15 |
|
ReportNotValidError
Bases: Exception
The given path does not represent a valid report.
Source code in mkreports/exceptions.py
18 19 20 21 |
|
TrackerActiveError
Bases: Exception
The tracker is active and it should not be.
Source code in mkreports/exceptions.py
42 43 44 45 |
|
TrackerEmptyError
Bases: Exception
The tracker is empty.
Source code in mkreports/exceptions.py
36 37 38 39 |
|
TrackerIncompleteError
Bases: Exception
The tracker has not yet completed.
Source code in mkreports/exceptions.py
30 31 32 33 |
|
TrackerNotActiveError
Bases: Exception
The tracker is not active and it should be active.
Source code in mkreports/exceptions.py
48 49 50 51 |
|