com.github.simy4.xpath.XmlBuilderException 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;
public class XmlBuilderException extends RuntimeException {
private static final long serialVersionUID = 1L;
public XmlBuilderException(String message) {
super(message);
}
public XmlBuilderException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy