Remnawave_python-sdk/remnawave/exceptions/__init__.py

39 lines
No EOL
811 B
Python

from .general import (
ApiError,
ApiErrorResponse,
AuthenticationError,
BadRequestError,
BusinessLogicError,
ConflictError,
FeatureNotAvailableError,
ForbiddenError,
MaintenanceError,
NetworkError,
NotFoundError,
QuotaExceededError,
RateLimitError,
ServerError,
UnauthorizedError,
ValidationError,
)
from .handler import handle_api_error
__all__ = [
"ApiError",
"ApiErrorResponse",
"AuthenticationError",
"BadRequestError",
"BusinessLogicError",
"ConflictError",
"FeatureNotAvailableError",
"ForbiddenError",
"MaintenanceError",
"NetworkError",
"NotFoundError",
"QuotaExceededError",
"RateLimitError",
"ServerError",
"UnauthorizedError",
"ValidationError",
"handle_api_error",
]