mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-02 02:30:07 +00:00
9 lines
264 B
Python
9 lines
264 B
Python
# This file was auto-generated by Fern from our API Definition.
|
|
|
|
from ..core.api_error import ApiError
|
|
import typing
|
|
|
|
|
|
class BadRequestError(ApiError):
|
|
def __init__(self, body: typing.Optional[typing.Any]):
|
|
super().__init__(status_code=400, body=body)
|