blob: f7b179727584e5901f51771f60302cf6c4534b1c [file] [log] [blame]
package org.apache.axiom.om.xpath;
import org.jaxen.BaseXPath;
import org.jaxen.JaxenException;
public class AXIOMXPath extends BaseXPath {
private static final long serialVersionUID = -5839161412925154639L;
/**
* Construct given an XPath expression string.
*
* @param xpathExpr the XPath expression.
* @throws org.jaxen.JaxenException if there is a syntax error while
* parsing the expression
*/
public AXIOMXPath(String xpathExpr) throws JaxenException {
super(xpathExpr, new DocumentNavigator());
}
}