Errors
Custom exceptions for notion-sdk-py.
This module defines the exceptions that can be raised when an error occurs.
APIErrorCode
Bases: str, Enum
Error codes returned in responses from the API.
Source code in notion_client/errors.py
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | |
ConflictError = 'conflict_error'
class-attribute
instance-attribute
The transaction could not be completed, potentially due to a data collision. Make sure the parameters are up to date and try again.
InternalServerError = 'internal_server_error'
class-attribute
instance-attribute
An unexpected error occurred. Reach out to Notion support.
InvalidJSON = 'invalid_json'
class-attribute
instance-attribute
The request body could not be decoded as JSON.
InvalidRequest = 'invalid_request'
class-attribute
instance-attribute
This request is not supported.
InvalidRequestURL = 'invalid_request_url'
class-attribute
instance-attribute
The request URL is not valid.
ObjectNotFound = 'object_not_found'
class-attribute
instance-attribute
Given the bearer token used, the resource does not exist. This error can also indicate that the resource has not been shared with owner of the bearer token.
RateLimited = 'rate_limited'
class-attribute
instance-attribute
This request exceeds the number of requests allowed. Slow down and try again.
RestrictedResource = 'restricted_resource'
class-attribute
instance-attribute
Given the bearer token used, the client doesn't have permission to perform this operation.
ServiceUnavailable = 'service_unavailable'
class-attribute
instance-attribute
Notion is unavailable. Try again later. This can occur when the time to respond to a request takes longer than 60 seconds, the maximum request timeout.
Unauthorized = 'unauthorized'
class-attribute
instance-attribute
The bearer token is not valid.
ValidationError = 'validation_error'
class-attribute
instance-attribute
The request body does not match the schema for the expected parameters.
ClientErrorCode
Bases: str, Enum
Error codes generated for client errors.
Source code in notion_client/errors.py
57 58 59 60 61 | |
NotionClientErrorBase
Bases: Exception
Base error type for all Notion client errors.
Source code in notion_client/errors.py
68 69 70 71 72 | |
RequestTimeoutError
Bases: NotionClientErrorBase
Error thrown by the client if a request times out.
Source code in notion_client/errors.py
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 | |
UnknownHTTPResponseError
Bases: HTTPResponseError
Error thrown if an API call responds with an unknown error code, or does not respond with a properly-formatted error.
Source code in notion_client/errors.py
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 | |