Files
neon-api-python/__first_attempt/exceptions.py
T
2024-01-18 12:56:15 -05:00

14 lines
297 B
Python

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