kg.apc.jmeter.RuntimeEOFException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmeter-plugins-extras Show documentation
Show all versions of jmeter-plugins-extras Show documentation
Custom plugins set for Apache JMeter
The newest version!
package kg.apc.jmeter;
public class RuntimeEOFException extends RuntimeException
{
public RuntimeEOFException(String string) {
super(string);
}
public RuntimeEOFException(String string, Throwable ex) {
super(string, ex);
}
}