mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
15 lines
348 B
HTML
15 lines
348 B
HTML
<html>
|
|
<body>
|
|
Reports <code>try</code> statements that catch
|
|
<code>java.lang.ThreadDeath</code> and do not rethrow the exception.
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
try {
|
|
executeInParallel(request);
|
|
} catch (ThreadDeath ex) { // warning: ThreadDeath 'ex' not rethrown
|
|
return false;
|
|
}
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
</body>
|
|
</html> |