mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2026-04-28 11:40:32 +00:00
10 lines
337 B
Python
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)
|