1: /** 2: * BSD-style license; for more info see http://pmd.sourceforge.net/license.html 3: */package net.sourceforge.pmd; 4: 5: public class RuleSetNotFoundException extends Exception { 6: public RuleSetNotFoundException(String msg) { 7: super(msg); 8: } 9: }