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 104dd2d commit 0d130abCopy full SHA for 0d130ab
toggl_python/exceptions.py
@@ -1,24 +1,28 @@
1
-class BadRequest(Exception):
+class TogglException(Exception):
2
pass
3
4
5
-class Unauthorized(Exception):
+class BadRequest(TogglException):
6
7
8
9
-class Forbidden(Exception):
+class Unauthorized(TogglException):
10
11
12
13
-class NotFound(Exception):
+class Forbidden(TogglException):
14
15
16
17
-class MethodNotAllowed(Exception):
+class NotFound(TogglException):
18
19
20
21
-class NotSupported(Exception):
+class MethodNotAllowed(TogglException):
22
+ pass
23
+
24
25
+class NotSupported(TogglException):
26
27
28
0 commit comments