summaryrefslogtreecommitdiff
path: root/wrappers/python/eduvpn_common/error.py
diff options
context:
space:
mode:
Diffstat (limited to 'wrappers/python/eduvpn_common/error.py')
-rw-r--r--wrappers/python/eduvpn_common/error.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/wrappers/python/eduvpn_common/error.py b/wrappers/python/eduvpn_common/error.py
index a642a70..3d84331 100644
--- a/wrappers/python/eduvpn_common/error.py
+++ b/wrappers/python/eduvpn_common/error.py
@@ -7,6 +7,7 @@ class WrappedError(Exception):
:param: traceback: str: The traceback of the error including newlines
:param: cause: str: The cause of the error as a message
"""
+
def __init__(self, traceback: str, cause: str):
super(WrappedError, self).__init__(cause)
self.traceback = traceback