Skyvern/skyvern/client/errors/not_found_error.py

9 lines
262 B
Python

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