Skyvern/skyvern/client/errors/unauthorized_error.py

9 lines
266 B
Python

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