This rule is defined by the following XPath expression:
//FinallyStatement[descendant::ThrowStatement]
Example:
public class Foo { public void bar() { try { // Here do some stuff } catch( Exception e) { // Handling the issue } finally { // is this really a good idea ? throw new Exception(); } } }