| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| PerfMonException |
|
| 1.0;1 |
| 1 | package kg.apc.jmeter.perfmon; | |
| 2 | ||
| 3 | import java.io.IOException; | |
| 4 | ||
| 5 | public class PerfMonException extends IOException { | |
| 6 | public PerfMonException(String message, Throwable cause) { | |
| 7 | 0 | super(message, cause); |
| 8 | 0 | } |
| 9 | ||
| 10 | public PerfMonException(String message) { | |
| 11 | 1 | super(message); |
| 12 | 1 | } |
| 13 | } |