kg.apc.jmeter.perfmon.PerfMonException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmeter-plugins-standard Show documentation
Show all versions of jmeter-plugins-standard Show documentation
Custom plugins set for Apache JMeter
package kg.apc.jmeter.perfmon;
import java.io.IOException;
public class PerfMonException extends IOException {
public PerfMonException(String message, Throwable cause) {
super(message, cause);
}
public PerfMonException(String message) {
super(message);
}
}