-
Notifications
You must be signed in to change notification settings - Fork 292
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e00618c
commit c0f6523
Showing
18 changed files
with
397 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
# This file was auto-generated by Fern from our API Definition. | ||
|
||
from .bad_request_error import BadRequestError | ||
from .forbidden_error import ForbiddenError | ||
from .not_found_error import NotFoundError | ||
from .too_early_error import TooEarlyError | ||
from .unprocessable_entity_error import UnprocessableEntityError | ||
|
||
__all__ = ["ForbiddenError", "NotFoundError", "TooEarlyError", "UnprocessableEntityError"] | ||
__all__ = ["BadRequestError", "ForbiddenError", "NotFoundError", "TooEarlyError", "UnprocessableEntityError"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# This file was auto-generated by Fern from our API Definition. | ||
|
||
from ..core.api_error import ApiError | ||
import typing | ||
|
||
|
||
class BadRequestError(ApiError): | ||
def __init__(self, body: typing.Optional[typing.Any]): | ||
super().__init__(status_code=400, body=body) |
Oops, something went wrong.