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

de.klosebrothers.specparser.gauge.parser.GaugeParserException Maven / Gradle / Ivy

Go to download

This is a Library for parsing a Gauge Specification into a appropriate datastructure

There is a newer version: 1.2
Show newest version
package de.klosebrothers.specparser.gauge.parser;

import org.commonmark.node.Node;

public class GaugeParserException extends RuntimeException {
    public GaugeParserException(GaugeParser parser, Node node, String errorMsg) {
        super("Tried to parse " + (node == null ? "null" : node) + " with parser \"" +
                parser + "\" but failed with error message: \"" + errorMsg+"\"");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy