Skyvern/skyvern/client/errors/forbidden_error.py
Stanislav Novosad ba0b25cb4b
Some checks are pending
Run tests and pre-commit / Run tests and pre-commit hooks (push) Waiting to run
Run tests and pre-commit / Frontend Lint and Build (push) Waiting to run
Publish Fern Docs / run (push) Waiting to run
Fern: regenerated Python SDK (#3829)
2025-10-27 16:26:37 -06:00

10 lines
337 B
Python

# This file was auto-generated by Fern from our API Definition.
import typing
from ..core.api_error import ApiError
class ForbiddenError(ApiError):
def __init__(self, body: typing.Optional[typing.Any], headers: typing.Optional[typing.Dict[str, str]] = None):
super().__init__(status_code=403, headers=headers, body=body)