Find new exceptions thrown without the caught exception
Recipe ID
org.openrewrite.staticanalysis.FindNewExceptionWithoutCauseArtifact
org.openrewrite.recipe:rewrite-static-analysisFinds catch blocks that throw a newly created exception without referencing the caught exception, which discards the original exception's stack trace and message. Data flow (taint) tracking is used to establish whether the caught exception—or any value derived from it—reaches the thrown exception, so indirect references through local variables and string concatenation are not falsely reported. This mirrors PMD's PreserveStackTrace rule.
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.staticanalysis.FindNewExceptionWithoutCauseIf the recipe isn’t available locally, install it with:
mod config recipes jar install org.openrewrite.recipe:rewrite-static-analysis:2.40.0Data tables
Structured output this recipe can produce.
- Exceptions thrown without the caught causeNew exceptions thrown from a `catch` block that do not reference the caught exception.
org.openrewrite.staticanalysis.table.ExceptionsWithoutCause - Source files that had resultsSource files that were modified by the recipe run.
org.openrewrite.table.SourcesFileResults - Source files that had search resultsSearch results that were found during the recipe run.
org.openrewrite.table.SearchResults - Source files that errored on a recipeThe details of all errors produced by a recipe run.
org.openrewrite.table.SourcesFileErrors - Recipe performanceStatistics used in analyzing the performance of recipes.
org.openrewrite.table.RecipeRunStats