us.abstracta.jmeter.javadsl.bridge.serialization.TestElementConstructorException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmeter-java-dsl-bridge Show documentation
Show all versions of jmeter-java-dsl-bridge Show documentation
Module which allows to build simple adapters for JMeter Java DSL in other languages
The newest version!
package us.abstracta.jmeter.javadsl.bridge.serialization;
import org.yaml.snakeyaml.constructor.ConstructorException;
import org.yaml.snakeyaml.nodes.Node;
public class TestElementConstructorException extends ConstructorException {
public TestElementConstructorException(String elementTypeName, Node node, String problem) {
super("while constructing a " + elementTypeName, node.getStartMark(),
problem, node.getEndMark());
}
}