aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/hrc/exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'hrc/exceptions.py')
-rw-r--r--hrc/exceptions.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/hrc/exceptions.py b/hrc/exceptions.py
index e69de29..c71118f 100644
--- a/hrc/exceptions.py
+++ b/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):
+ ...