Pattern: ThreadDeath
without re-throw
Issue: -
Detects code that catches java.lang.ThreadDeath
without re-throwing it.
Example of violations:
try {
def a = 0
} catch (ThreadDeath td) {
td.printStackTrace()
}
Pattern: ThreadDeath
without re-throw
Issue: -
Detects code that catches java.lang.ThreadDeath
without re-throwing it.
Example of violations:
try {
def a = 0
} catch (ThreadDeath td) {
td.printStackTrace()
}