mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 04:37:32 +07:00
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
18 lines
418 B
HTML
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> |