Import all the stacktester stuff as-is (s/stacktester/kong/, though).
diff --git a/kong/exceptions.py b/kong/exceptions.py
new file mode 100644
index 0000000..214f43c
--- /dev/null
+++ b/kong/exceptions.py
@@ -0,0 +1,9 @@
+
+class TimeoutException(Exception):
+    """ Exception on timeout """
+    def __repr__(self):
+        return "Request Timed Out"
+
+
+class ServerNotFound(KeyError):
+    pass