← All recipes
Moderne licensed

Chain exceptions with raise ... from in except blocks

Recipe IDorg.openrewrite.python.cleanup.RaiseFromPreviousErrorArtifactopenrewrite-static-analysis

Raise statements inside except blocks should use from to chain the new exception to the caught one, preserving the full traceback.

Single recipeProprietary

Usage

This recipe has no required configuration options. You’ll need the Moderne CLI configured before running the command below.

mod run . --recipe org.openrewrite.python.cleanup.RaiseFromPreviousError

If the recipe isn’t available locally, install it with:

mod config recipes pip install openrewrite-static-analysis