Reports a try statement that catches java.lang.ThreadDeath and does not rethrow the exception.

Example:


  try {
    executeInParallel(request);
  }
  catch (ThreadDeath ex) { // warning: ThreadDeath 'ex' not rethrown
    return false;
  }