All Downloads are FREE. Search and download functionalities are using the official Maven repository.

us.abstracta.jmeter.javadsl.bridge.serialization.TestElementConstructorException Maven / Gradle / Ivy

Go to download

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());
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy