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() }

Locating this inspection

By ID

Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.

KotlinThrowableNotThrown
Via Settings dialog

Path to the inspection settings via IntelliJ Platform IDE Settings dialog, when you need to adjust inspection settings directly from your IDE.

Settings or Preferences | Editor | Inspections | Kotlin | Probable bugs

Availability

By default bundled with

IntelliJ IDEA 2024.1, Qodana for JVM 2024.1,

Can be installed with plugin

Kotlin, 241.18072-IJ

Last modified: 18 June 2024