Skip to main content

Elegant per-endpoint error handling for FastAPI that keeps OpenAPI in sync

Reason this release was yanked:

bugged

Project description

FastAPI Error Map

PyPI version PyPI - Python Version codecov GitHub License GitHub Actions Workflow Status

Elegant per-endpoint error handling for FastAPI that keeps OpenAPI in sync.

📦 Installation

pip install fastapi-error-map

🚀 Quickstart

# A seamless replacement for APIRouter with error mapping support
router = ErrorAwareRouter()


@router.get(
    "/stock",
    error_map={
        # Minimal rule: return 401 and respond with {"error": "..."}
        # using default translator
        AuthorizationError: 401,
        # Full rule: return 409 and respond with custom JSON
        # using custom translator, and trigger side effect
        OutOfStockError: rule(
            status=409,
            translator=OutOfStockTranslator(),
            on_error=notify,
        ),
    },
)
def check_stock(user_id: int = 0) -> None:
    if user_id == 0:
        raise AuthorizationError
    raise OutOfStockError("No items available.")
  • Fully compatible with APIRouter
  • Error handling centralized at the endpoint level
  • OpenAPI schema automatically generated
Example OpenAPI

Figure 1: Example OpenAPI

🔍 Why Not Global Handlers?

To convert application errors into HTTP responses, FastAPI allows attaching exception handlers to the app instance. These handlers are global, which makes it harder to customize the response based on context and can become a source of hidden bugs.

app.add_exception_handler(UserNotFoundError, error_handler)

For example, error_handler might turn UserNotFoundError into 404 Not Found. But in an authentication context, it might mean 401 Unauthorized, and in a communication scenario — 422 Unprocessable Entity. The fact that a user is missing carries different meaning in different situations.

If accuracy and clarity in your API matter more than the short-term convenience of global (and implicit) exception interception, prefer handling exceptions directly in the route — where full context is available: request type, business scenario, and client expectations.

You could use try/except blocks or a decorator with error mapping. The first doesn't keep your views clean and duplicates logic between routes. The second solves that, but like the first, remains invisible to FastAPI: the framework can't extract possible responses from your decorator to include in the OpenAPI schema. You could define responses manually, but that risks a mismatch between the schema and actual behavior — because there's no single source of truth.

fastapi-error-map solves this by letting you define error handling rules right in the route declaration. See the example in the 🚀 Quickstart.

⚙ Using error_map

Error handling rules are defined directly in the route declaration of an ErrorAwareRouter, using the error_map parameter.

[!NOTE] error_map handles HTTP error responses only — statuses must be 4xx or 5xx.

There are two ways to do it:

🔸 Short Form

error_map = {
    SomeError: 400,
}

Which is equivalent to:

error_map = {
    SomeError: rule(status=400),
}

In both cases, the default translator is used, which returns JSON like:

{
  "error": "..."
}

🔹 Full Form

Allows you to specify the status code, and optionally a translator and on_error:

error_map = {
    MyError: rule(
        status=409,
        translator=MyTranslator(),
        on_error=report_to_sentry,
    ),
}

Parameters of rule(...), * — required:

  • status* — HTTP status code to return (must be 4xx or 5xx; e.g. 404, 409, 422)
  • translator — object that converts an exception into serializable payload. If not provided, the default one is used ({ "error": str(err) } for 4xx; { "error": "Internal server error" } for 5xx).
  • on_error — function to call when an exception occurs (e.g. logging or alerting). Can be awaitable

🧩 Matching semantics

error_map matches exact exception types only (no inheritance). If you map BaseError and raise ChildError(BaseError), the rule won’t apply. This is by design to keep routing explicit. If there’s demand, inheritance-based resolving may be added later as an opt-in.

🧰 Custom Translators

If you want to change the error response format, define your own translator — object that implements ErrorTranslator protocol. It has:

  • .from_error(err) — turns exception into serializable object
  • .error_response_model_cls — returns a class describing object structure (used for OpenAPI)

Example:

from dataclasses import dataclass
from fastapi_error_map.translators import ErrorTranslator


@dataclass
class MyErrorResponse:
    type: str
    message: str


class MyTranslator(ErrorTranslator[MyErrorResponse]):
    @property
    def error_response_model_cls(self) -> type[MyErrorResponse]:
        return MyErrorResponse

    def from_error(self, err: Exception) -> MyErrorResponse:
        return MyErrorResponse(
            type=type(err).__name__,
            message=str(err),
        )

⚠️ Translator robustness

Custom translators should not raise exceptions. If from_error(...) fails at runtime, the exception will propagate to FastAPI’s global handlers.

🔄 Side Effects (on_error)

The on_error parameter in rule(...) allows specifying function to run when exception occurs, before response is generated. The awaitable function will be awaited. It doesn’t change the response status/body when it succeeds and is useful for:

  • logging
  • sending alerts
  • metrics
  • debugging

Example:

def notify_admin(err: Exception) -> None:
    print(f"[!] Error: {type(err).__name__}{err}")


error_map = {
    DangerousOperationError: rule(
        status=500,
        translator=MyTranslator(),
        on_error=notify_admin,
    ),
}

🚨 Strict side effects

on_error is executed before the response is generated. If it raises, the exception propagates and the request fails. This is intentional to avoid hiding errors in side effects — they should be fixed rather than silently ignored. Keep on_error robust or wrap it on your side if you prefer soft-fail logging.

[!NOTE] Both translator and on_error receive the raised exception as an argument. If your implementation does not use it, suppress the unused-argument warning from your linter (e.g. # noqa: ARG002 for Ruff).

🧠 Parameter Precedence

Error handling and schema generation in fastapi-error-map are fully driven by route-level arguments to .get(), .post(), etc.

📎 Core Parameters

In addition to error_map, you can also pass:

@router.get(
    "/path",
    error_map=...,
    default_on_error=...,
    warn_on_unmapped=...,
    default_client_error_translator=...,
    default_server_error_translator=...,
)

These parameters apply to the current route only. They are not set on the router level (for now).

➕ How Parameters Are Resolved

When an error occurs, fastapi-error-map processes it as follows:

  1. status is taken from rule(...), or from short form: SomeError: 400
  2. translator:
  • If provided in rule(...), it is used
  • Otherwise:
    • If the status is < 500, default_client_error_translator is used (if given)
    • If the status is >= 500, default_server_error_translator is used (if given)
    • If none are set, the built-in one is used:
    { "error": str(err) } for 4xx;
    { "error": "Internal server error" } for 5xx
    
  1. on_error:
    • If provided in rule(...), it is used
    • Otherwise, default_on_error is used if provided
    • If neither is set, nothing is called

🧾 OpenAPI: responses Takes Priority

If you explicitly pass the responses=... parameter to .get(...) / .post(...), it overrides the schema generation from error_map — but only for the specified status codes.

@router.get(
    "/foo",
    error_map={SomeError: 400},
    responses={400: {"model": {}}},  # ← this wins
)

❗ Handling Unmapped Exceptions (warn_on_unmapped)

By default (warn_on_unmapped=True), fastapi-error-map expects every exception raised in a handler to be explicitly listed in error_map.
If a rule is missing, a RuntimeError is raised, and the original exception is attached as __cause__. This helps you catch missing error cases at runtime.

If you set warn_on_unmapped=False, the library won’t complain about missing rules and will re-raise the exception as-is. In that case:

  • the exception type is preserved
  • the original stack trace is retained
  • the global @app.exception_handler(...) in FastAPI will receive raw exception

📘 Handling by FastAPI

FastAPI will always catch unhandled exceptions and pass them to the global @app.exception_handler(...) if defined. This behavior is not affected by warn_on_unmapped.

If the error is declared in error_map, fastapi-error-map handles the response itself — the global handler will not be triggered.

📚 Examples

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

fastapi_error_map-0.9.7.tar.gz (378.4 kB view details)

Uploaded Source

Built Distribution

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

fastapi_error_map-0.9.7-py3-none-any.whl (20.5 kB view details)

Uploaded Python 3

File details

Details for the file fastapi_error_map-0.9.7.tar.gz.

File metadata

  • Download URL: fastapi_error_map-0.9.7.tar.gz
  • Upload date:
  • Size: 378.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.28.1

File hashes

Hashes for fastapi_error_map-0.9.7.tar.gz
Algorithm Hash digest
SHA256 60ddab5b59cec2c1445f091d26d9ea4e9b785a1b246dd70e7e386794c97f26c1
MD5 fbe8ef33a41b0e002afc7b32be7944da
BLAKE2b-256 843d4feb6777dd0c1814415db9679f04c608adc13b8c60ba13b1676e7ac3ed66

See more details on using hashes here.

File details

Details for the file fastapi_error_map-0.9.7-py3-none-any.whl.

File metadata

File hashes

Hashes for fastapi_error_map-0.9.7-py3-none-any.whl
Algorithm Hash digest
SHA256 7c3a543f454228fb7883aec42426d8e46f4f279c0dbf224f9cc20fac671afedf
MD5 9ecbc5dde54cbd8d620067df930640e4
BLAKE2b-256 8ca547fa8786c4c41face5181fdcb6929392b3a2837e59f4335b15e070b88623

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