# This file was auto-generated by Fern from our API Definition.

import typing

from ..core.api_error import ApiError
from ..types.bad_request_error_body import BadRequestErrorBody


class BadRequestError(ApiError):
    def __init__(self, body: BadRequestErrorBody, headers: typing.Optional[typing.Dict[str, str]] = None):
        super().__init__(status_code=400, headers=headers, body=body)
