summaryrefslogtreecommitdiff
path: root/python/evemu/exception.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/evemu/exception.py')
-rw-r--r--python/evemu/exception.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/python/evemu/exception.py b/python/evemu/exception.py
new file mode 100644
index 0000000..20782f2
--- /dev/null
+++ b/python/evemu/exception.py
@@ -0,0 +1,22 @@
+class EvEmuError(Exception):
+ pass
+
+
+class WrapperError(EvEmuError):
+ pass
+
+
+class ExecutionError(EvEmuError):
+ pass
+
+
+class TestError(EvEmuError):
+ pass
+
+
+class NullFileHandleError(EvEmuError):
+ pass
+
+
+class SkipTest(Exception):
+ pass