summaryrefslogtreecommitdiffstats
path: root/kilo/kilo/pub/exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'kilo/kilo/pub/exceptions.py')
-rw-r--r--kilo/kilo/pub/exceptions.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/kilo/kilo/pub/exceptions.py b/kilo/kilo/pub/exceptions.py
index 7a9ee4e5..39a3bc89 100644
--- a/kilo/kilo/pub/exceptions.py
+++ b/kilo/kilo/pub/exceptions.py
@@ -11,4 +11,8 @@
class VimDriverKiloException(Exception):
+ def __init__(self, message, status_code="", content=""):
+ super(VimDriverKiloException, self).__init__(message)
+ self.status_code = status_code
+ self.content = content
pass