View Javadoc
1   package org.checkstyle.suppressionxpathfilter.illegalcatch;
2   
3   public class InputXpathIllegalCatchOne {
4       public void fun() {
5           try {
6           } catch (RuntimeException e) { // warn
7           }
8       }
9   }