mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-01 18:20:06 +00:00
9 lines
262 B
Python
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)
|