KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sourceforge > pmd > RuleSetNotFoundException


1 /**
2  * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
3  */

4 package net.sourceforge.pmd;
5
6 public class RuleSetNotFoundException extends Exception JavaDoc {
7     public RuleSetNotFoundException(String JavaDoc msg) {
8         super(msg);
9     }
10 }
11
Popular Tags