debputy.manifest_parser.exceptions

src/debputy/manifest_parser/exceptions.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from debputy.exceptions import DebputyRuntimeError


class ManifestException(DebputyRuntimeError):
    pass


class ManifestParseException(ManifestException):
    pass


class ManifestTypeException(ManifestParseException):
    pass


class ManifestInvalidUserDataException(ManifestException):
    pass