Skip to main content

Shared base exception utilities for FastAPI apps.

Project description

Exception Core Package

A comprehensive exception handling package for FastAPI applications that provides standardized error responses and exception handling.

Features

  • Pre-defined HTTP exceptions for common error scenarios
  • Dynamic error creation for custom scenarios
  • Standardized error response format
  • Request validation error handling

Installation

pip install abs-exception-core

Usage

1. Import and Register Exception Handlers

from fastapi import FastAPI
from abs_exception_core.exception_handlers import (
    request_validation_exception_handler,
    global_exception_handler,
    # ... other handlers
)

app = FastAPI()

# Register exception handlers
app.add_exception_handler(RequestValidationError, request_validation_exception_handler)
app.add_exception_handler(Exception, global_exception_handler)

2. Using Pre-defined Exceptions

from abs_exception_core.exceptions import (
    NotFoundError,
    ValidationError,
    AuthError,
    GenericHttpError,
    # ... other exceptions
)

# Example usage in a route
@app.get("/items/{item_id}")
async def get_item(item_id: int):
    if not item_exists(item_id):
        raise NotFoundError(detail="Item not found")
    
    if not has_permission():
        raise AuthError(detail="Insufficient permissions")

3. Using Generic Error

The GenericHttpError class allows you to create custom HTTP exceptions with any status code:

# Create a custom error with status code 418
error = GenericHttpError(
    status_code=418,
    detail="I'm a teapot",
    headers={"X-Custom-Header": "value"}
)

# Create a custom error with just status code and message
error = GenericHttpError(
    status_code=451,
    detail="Unavailable For Legal Reasons"
)

# Create a custom error with just status code
error = GenericHttpError(status_code=402)

Available Exceptions

  • DuplicatedError (409 Conflict)
  • AuthError (403 Forbidden)
  • NotFoundError (404 Not Found)
  • ValidationError (422 Unprocessable Entity)
  • PermissionDeniedError (403 Forbidden)
  • UnauthorizedError (401 Unauthorized)
  • BadRequestError (400 Bad Request)
  • ConflictError (409 Conflict)
  • InternalServerError (500 Internal Server Error)
  • RateLimitExceededError (429 Too Many Requests)
  • ServiceUnavailableError (503 Service Unavailable)
  • GenericHttpError (Custom Status Code) - For creating custom HTTP exceptions

Error Response Format

All errors follow a standardized format:

{
    "message": "Error message",
    "error": "Detailed error description",
    "type": "ErrorType",
    "details": {
        "path": "/api/endpoint",
        "method": "GET"
    },
    "errors": [
        {
            "field": "field_name",
            "message": "Validation message",
            "type": "error_type",
            "input_value": "invalid_value"
        }
    ]
}

Best Practices

  1. Use the most specific exception type that matches your error scenario
  2. For custom status codes or scenarios not covered by standard exceptions, use GenericHttpError
  3. Provide meaningful error details to help clients understand and resolve issues
  4. Use custom headers sparingly and only when they provide additional value
  5. Follow the standardized error response format for consistency

License

This project is licensed under the MIT License - see the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

abs_exception_core-0.2.1.tar.gz (3.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

abs_exception_core-0.2.1-py3-none-any.whl (4.7 kB view details)

Uploaded Python 3

File details

Details for the file abs_exception_core-0.2.1.tar.gz.

File metadata

  • Download URL: abs_exception_core-0.2.1.tar.gz
  • Upload date:
  • Size: 3.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.2 CPython/3.13.7 Darwin/23.6.0

File hashes

Hashes for abs_exception_core-0.2.1.tar.gz
Algorithm Hash digest
SHA256 5d7ee944f3e133abd06209dc30fcf4b7ed342587148c9ed7512f74c3a8094557
MD5 f664b1c1bc00953f90e5cd1a103505d3
BLAKE2b-256 a4202e7ae1abb1956171a3ea4f52433ee3a500a60b00960c6d032081749f72bc

See more details on using hashes here.

File details

Details for the file abs_exception_core-0.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for abs_exception_core-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 1b4330723a621a39494aa3cb10f8070cf72ae350d55d40b15798212a05a5786d
MD5 5b861d5fff5ada749fef95c1f31c02f7
BLAKE2b-256 2cdc3f61b45f6de3402923b289f2084994e6b2898cfd9f306e62e841591d40b3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page