|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
RuleSetNotFoundException.java | - | 100% | 100% | 100% |
|
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 { | |
7 | 1 | public RuleSetNotFoundException(String msg) { |
8 | 1 | super(msg); |
9 | } | |
10 | } |
|