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 b4bbb31 commit 2dd9dc4Copy full SHA for 2dd9dc4
hcloud/_exceptions.py
@@ -4,11 +4,15 @@
4
5
6
class HCloudException(Exception):
7
- """There was an error while using the hcloud library"""
+ """There was an error while using the hcloud library.
8
+
9
+ All exceptions in the hcloud library inherit from this exception. It may be used as
10
+ catch-all exception.
11
+ """
12
13
14
class APIException(HCloudException):
- """There was an error while performing an API Request"""
15
+ """There was an error while performing an API Request."""
16
17
def __init__(
18
self,
0 commit comments