diff options
Diffstat (limited to 'src/hrc/exceptions.py')
| -rw-r--r-- | src/hrc/exceptions.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/hrc/exceptions.py b/src/hrc/exceptions.py new file mode 100644 index 0000000..c71118f --- /dev/null +++ b/src/hrc/exceptions.py @@ -0,0 +1,22 @@ +class EventException(BaseException): + ... + + +class SkipException(EventException): + ... + + +class StopException(EventException): + ... + + +class CoreException(Exception): + ... # noqa: N818 + + +class GetEventTimeout(CoreException): + ... + + +class LoadModuleError(CoreException): + ... |
