-
Notifications
You must be signed in to change notification settings - Fork 0
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
e41a0c0
commit d1ef4a1
Showing
22 changed files
with
252 additions
and
27 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,7 +1,21 @@ | ||
# This file was auto-generated by Fern from our API Definition. | ||
|
||
from .api_id_not_found import ApiIdNotFound | ||
from .api_id_required_error import ApiIdRequiredError | ||
from .endpoint_not_found import EndpointNotFound | ||
from .invalid_page_error import InvalidPageError | ||
from .org_id_and_api_id_not_found import OrgIdAndApiIdNotFound | ||
from .org_id_not_found import OrgIdNotFound | ||
from .org_id_required_error import OrgIdRequiredError | ||
from .sdk_not_found import SdkNotFound | ||
|
||
__all__ = ["ApiIdNotFound", "EndpointNotFound", "SdkNotFound"] | ||
__all__ = [ | ||
"ApiIdNotFound", | ||
"ApiIdRequiredError", | ||
"EndpointNotFound", | ||
"InvalidPageError", | ||
"OrgIdAndApiIdNotFound", | ||
"OrgIdNotFound", | ||
"OrgIdRequiredError", | ||
"SdkNotFound", | ||
] |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# This file was auto-generated by Fern from our API Definition. | ||
|
||
from ....core.api_error import ApiError | ||
|
||
|
||
class ApiIdRequiredError(ApiError): | ||
def __init__(self, body: str): | ||
super().__init__(status_code=400, body=body) |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# This file was auto-generated by Fern from our API Definition. | ||
|
||
from ....core.api_error import ApiError | ||
|
||
|
||
class InvalidPageError(ApiError): | ||
def __init__(self, body: str): | ||
super().__init__(status_code=400, body=body) |
8 changes: 8 additions & 0 deletions
8
src/fern/resources/snippets/errors/org_id_and_api_id_not_found.py
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,8 @@ | ||
# This file was auto-generated by Fern from our API Definition. | ||
|
||
from ....core.api_error import ApiError | ||
|
||
|
||
class OrgIdAndApiIdNotFound(ApiError): | ||
def __init__(self, body: str): | ||
super().__init__(status_code=400, body=body) |
Oops, something went wrong.