For the complete documentation index, see llms.txt. This page is also available as Markdown.

Error Codes Reference

SDK error codes — full StratixError exception hierarchy and HTTP status mapping.

This reference guide provides detailed information about all error codes and exceptions in the LayerLens Python SDK.

Exception Hierarchy

StratixError (Base exception)
├── APIError (Base for API-related errors)
│ ├── APIConnectionError (Network/connection issues)
│ │ └── APITimeoutError (Request timeouts)
│ ├── APIResponseValidationError (Invalid response format)
│ └── APIStatusError (HTTP status errors)
│ ├── BadRequestError (400)
│ ├── AuthenticationError (401)
│ ├── PermissionDeniedError (403)
│ ├── NotFoundError (404)
│ ├── ConflictError (409)
│ ├── UnprocessableEntityError (422)
│ ├── RateLimitError (429)
│ └── InternalServerError (500+)

See Also

Last updated

Was this helpful?