aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/hrc/exceptions.py
blob: c71118fa6894cc9ab2040941efa849c8a9347cda (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class EventException(BaseException):
    ...


class SkipException(EventException):
    ...


class StopException(EventException):
    ...


class CoreException(Exception):
    ...  # noqa: N818


class GetEventTimeout(CoreException):
    ...


class LoadModuleError(CoreException):
    ...