// $Id: XPathExpressionException.java,v 1.3.12.1 2004/06/15 00:05:01 rameshm Exp $ /* * @(#)XPathExpressionException.java 1.6 04/07/26 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package javax.xml.xpath; /** * XPathExpressionException represents an error in an XPath expression.

* * @author Norman Walsh * @author Jeff Suttor * @version $Revision: 1.3.12.1 $, $Date: 2004/06/15 00:05:01 $ * @since 1.5 */ public class XPathExpressionException extends XPathException { /** *

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.

* * @param message The detail message. */ public XPathExpressionException(String message) { super(message); } /** *

Constructs a new XPathExpressionException with the specified cause.

* *

If cause is null, then a NullPointerException is thrown.

* * @param cause The cause. * * @throws NullPointerException if cause is null. */ public XPathExpressionException(Throwable cause) { super(cause); } }