mirror of
https://github.com/remnawave/python-sdk.git
synced 2026-05-13 12:16:42 +00:00
39 lines
No EOL
811 B
Python
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",
|
|
] |