/*
* Copyright (c) 2003, 2005, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package javax.xml.xpath;
/**
* XPathExpressionException
represents an error in an XPath expression.
Stream Unique Identifier.
*/ private static final long serialVersionUID = -1837080260374986980L; /** *Constructs a new XPathExpressionException
* with the specified detail message
.
The cause
is not initialized.
If message
is null
,
* then a NullPointerException
is thrown.
message
is
* null
.
*/
public XPathExpressionException(String message) {
super(message);
}
/**
* Constructs a new XPathExpressionException
* with the specified cause
.
If cause
is null
,
* then a NullPointerException
is thrown.
cause
is null
.
*/
public XPathExpressionException(Throwable cause) {
super(cause);
}
}