com.github.simy4.xpath.parser.XPathParserException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xpath-to-xml-core Show documentation
Show all versions of xpath-to-xml-core Show documentation
Convenient utility to build XML models by evaluating XPath expressions
package com.github.simy4.xpath.parser;
import javax.xml.xpath.XPathExpressionException;
import java.util.Arrays;
class XPathParserException extends XPathExpressionException {
private static final long serialVersionUID = 1L;
XPathParserException(Token actual) {
super("Expected no more tokens but was: " + actual);
}
XPathParserException(Token actual, String... expected) {
super("Expected tokens: " + Arrays.toString(expected) + " but was: " + actual);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy