This rule is defined by the following XPath expression:
//CatchStatement/FormalParameter/Type /ReferenceType/ClassOrInterfaceType[@Image='NullPointerException']
Example:
public class Foo { void bar() { try { // do something } catch (NullPointerException npe) { } } }