blob: 31e091e9f7c6a1e9a60cfee3bdc7a3a83356d031 [file] [log] [blame]
package org.apache.ws.commons.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());
}
}