Add NeonClient2 package and update NeonClient import

This commit is contained in:
2024-01-17 15:51:42 -05:00
parent c13ea6b435
commit c2e42d62d6
14 changed files with 1584 additions and 204 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