summaryrefslogtreecommitdiff
path: root/wrappers/python/eduvpn_common/error.py
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2023-03-20 13:02:50 +0100
committerJeroen Wijenbergh <46386452+jwijenbergh@users.noreply.github.com>2023-09-25 09:43:37 +0200
commitde403deed73340f8068739dc240ebebfa1053872 (patch)
tree75876f2021a05d454125ee1e6cf5d926ae19b86d /wrappers/python/eduvpn_common/error.py
parent7e7472c30e09eed15424494547729c1f93bc924e (diff)
Wrappers Python: Implement V2 initial API
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