// $Id: XPathFunctionException.java,v 1.3.12.1 2004/06/15 00:05:02 rameshm Exp $ /* * @(#)XPathFunctionException.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; /** * XPathFunctionException represents an error with an XPath function.

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

Stream Unique Identifier.

*/ private static final long serialVersionUID = -1837080260374986980L; /** *

Constructs a new XPathFunctionException 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 XPathFunctionException(String message) { super(message); } /** *

Constructs a new XPathFunctionException with the specified cause.

* *

If cause is null, then a NullPointerException is thrown.

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