This commit is contained in:
2024-01-18 12:56:15 -05:00
parent b459ae1583
commit 6c36464f3b
11 changed files with 7 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
from requests.exceptions import HTTPError
class NeonClientException(HTTPError):
"""Base exception class for all exceptions raised by the Neon Client."""
pass
class NeonClientAuthenticationException(NeonClientException):
"""Exception raised when authentication fails."""
pass