Files
openide/java/java-impl/resources/inspectionDescriptions/CaughtExceptionImmediatelyRethrown.html
2025-02-05 04:43:28 +00:00

18 lines
418 B
HTML

<html>
<body>
Reports <code>catch</code> blocks that immediately rethrow
the caught exception without performing any action on it.
Such <code>catch</code> blocks are unnecessary and have no error
handling.
<!-- tooltip end -->
<p><b>Example:</b></p>
<pre><code>
try {
new FileInputStream("");
} catch (FileNotFoundException e) {
throw e;
}
</code></pre>
</body>
</html>