01 /**
02 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
03 */
04 package net.sourceforge.pmd;
05
06 public class RuleSetNotFoundException extends Exception {
07 public RuleSetNotFoundException(String msg) {
08 super(msg);
09 }
10 }
|