/*
 * 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;
/**
 * XPathFunctionException represents an error with an XPath function.
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.
message is
     *   null.
     */
    public XPathFunctionException(String message) {
        super(message);
    }
    /**
     * Constructs a new XPathFunctionException with the specified cause.
If cause is null,
     * then a NullPointerException is thrown.
cause is null.
     */
    public XPathFunctionException(Throwable cause) {
        super(cause);
    }
}