Coverage for src/debputy/manifest_parser/exceptions.py: 100%
9 statements
« prev ^ index » next coverage.py v7.6.0, created at 2025-01-27 13:59 +0000
« prev ^ index » next coverage.py v7.6.0, created at 2025-01-27 13:59 +0000
1from debputy.exceptions import DebputyRuntimeError
4class ManifestException(DebputyRuntimeError):
5 pass
8class ManifestParseException(ManifestException):
9 pass
12class ManifestTypeException(ManifestParseException):
13 pass
16class ManifestInvalidUserDataException(ManifestException):
17 pass