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

com.github.simy4.xpath.parser.XPathParserException Maven / Gradle / Ivy

There is a newer version: 2.3.9
Show newest version
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