from http import HTTPStatus from .api_exceptions import ApiException class ForbiddenException(ApiException): """Exception for forbidden access errors.""" def __init__(self, message: str = "Forbidden"): super().__init__(HTTPStatus.FORBIDDEN, message)