We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7f4d57 commit 0f97ff6Copy full SHA for 0f97ff6
clients/python/src/osparc/_exceptions.py
@@ -1,7 +1,12 @@
1
from functools import wraps
2
3
from httpx import HTTPStatusError
4
-from osparc_client import ApiException
+
5
+from osparc_client.exceptions import OpenApiException as OpenApiException
6
+from osparc_client.exceptions import ApiTypeError as ApiTypeError
7
+from osparc_client.exceptions import ApiValueError as ApiValueError
8
+from osparc_client.exceptions import ApiKeyError as ApiKeyError
9
+from osparc_client.exceptions import ApiException as ApiException
10
11
12
class VisibleDeprecationWarning(UserWarning):
0 commit comments