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.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/wrappers/python/eduvpn_common/error.py b/wrappers/python/eduvpn_common/error.py
deleted file mode 100644
index 3d84331..0000000
--- a/wrappers/python/eduvpn_common/error.py
+++ /dev/null
@@ -1,14 +0,0 @@
-from enum import Enum
-
-
-class WrappedError(Exception):
- """An exception returned by the Go library
-
- :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
- self.cause = cause