Java
'Throwable' not thrown
Warning
New
Last modified: 03 December 2024 Reports instantiations of Throwable
or its subclasses, where the created Throwable
is never actually thrown. Additionally, this inspection reports method calls that return instances of Throwable
or its subclasses, when the result of the method call is not thrown.
Calls to methods annotated with the Error Prone's or AssertJ's @CanIgnoreReturnValue
annotation will not be reported.
Example:
void check(String s) {
if (s == null) {
new NullPointerException("s");
}
// ...
}
- 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.
ThrowableNotThrown
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Java, 243.23126 |
Thanks for your feedback!
Was this page helpful?