Adding general exceptions.
authorScott Gasch <[email protected]>
Sat, 24 Apr 2021 00:10:14 +0000 (17:10 -0700)
committerScott Gasch <[email protected]>
Sat, 24 Apr 2021 00:10:14 +0000 (17:10 -0700)
exceptions.py [new file with mode: 0644]

diff --git a/exceptions.py b/exceptions.py
new file mode 100644 (file)
index 0000000..3ce94d3
--- /dev/null
@@ -0,0 +1,13 @@
+#!/usr/bin/env python3
+
+class PreconditionException(AssertionError):
+    pass
+
+
+class PostconditionException(AssertionError):
+    pass
+
+
+class TimeoutError(Exception):
+    pass
+