We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7283815 commit d4d3723Copy full SHA for d4d3723
src/rest_rpc/__init__.py
@@ -7,6 +7,7 @@
7
- [ApiImplementation](#rest_rpc.api_implementation.ApiImplementation)
8
- [`api_client`](#rest_rpc.api_client)
9
- [ApiClient](#rest_rpc.api_client.ApiClient)
10
+ - [CommunicationError](#rest_rpc.api_client.CommunicationError)
11
- [NetworkError](#rest_rpc.api_client.NetworkError)
12
- [HttpError](#rest_rpc.api_client.HttpError)
13
- [DecodeError](#rest_rpc.api_client.DecodeError)
@@ -22,6 +23,9 @@
22
23
from .api_client import (
24
ApiClient as ApiClient,
25
)
26
+from .api_client import (
27
+ CommunicationError as CommunicationError,
28
+)
29
30
DecodeError as DecodeError,
31
0 commit comments