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
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 55 | |
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
58 59 60 61 62 63 | |
InvalidPathParameterError
Bases: NotionClientErrorBase
Error thrown when a path parameter contains invalid characters such as path traversal sequences (..) that could alter the intended API endpoint.
Source code in notion_client/errors.py
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 | |
NotionClientErrorBase
Bases: Exception
Base error type for all Notion client errors.
Source code in notion_client/errors.py
70 71 72 73 74 | |
RequestTimeoutError
Bases: NotionClientErrorBase
Error thrown by the client if a request times out.
Source code in notion_client/errors.py
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 | |
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
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 | |
validate_request_path(path)
Validates that a request path does not contain path traversal sequences. Raises InvalidPathParameterError if the path contains ".." segments, including URL-encoded variants like %2e%2e.
Source code in notion_client/errors.py
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 | |