Inspectopedia Help

Throwable not thrown

Reports instantiations of Throwable or its subclasses, when the created Throwable is never actually thrown.

The reported code indicates mistakes that are hard to catch in tests.

Also, this inspection reports method calls that return instances of Throwable or its subclasses, when the resulting Throwable instance is not thrown.

Example:

fun check(condition: Boolean) { if (!condition) /* throw is missing here */ IllegalArgumentException("condition is not met"); } fun createError() = RuntimeException() fun foo() { /* throw is missing here */ createError() }

Inspection Details

Available in:

IntelliJ IDEA 2023.3, Qodana for JVM 2023.3

Plugin:

Kotlin, @snapshot@

Last modified: 13 July 2023