163N/A/*
1472N/A * Copyright (c) 2003, 2005, Oracle and/or its affiliates. All rights reserved.
253N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
163N/A *
253N/A * This code is free software; you can redistribute it and/or modify it
253N/A * under the terms of the GNU General Public License version 2 only, as
253N/A * published by the Free Software Foundation. Oracle designates this
163N/A * particular file as subject to the "Classpath" exception as provided
253N/A * by Oracle in the LICENSE file that accompanied this code.
253N/A *
253N/A * This code is distributed in the hope that it will be useful, but WITHOUT
253N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
253N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
163N/A * version 2 for more details (a copy is included in the LICENSE file that
253N/A * accompanied this code).
253N/A *
253N/A * You should have received a copy of the GNU General Public License version
163N/A * 2 along with this work; if not, write to the Free Software Foundation,
1472N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1472N/A *
1472N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
163N/A * or visit www.oracle.com if you need additional information or have any
163N/A * questions.
163N/A */
163N/A
163N/Apackage javax.xml.xpath;
163N/A
163N/A/**
163N/A * <code>XPathFactoryConfigurationException</code> represents a configuration error in a <code>XPathFactory</code> environment.</p>
163N/A *
163N/A * @author <a href="mailto:Norman.Walsh@Sun.com">Norman Walsh</a>
163N/A * @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
163N/A * @since 1.5
163N/A */
163N/Apublic class XPathFactoryConfigurationException extends XPathException {
163N/A
163N/A /**
163N/A * <p>Stream Unique Identifier.</p>
163N/A */
163N/A private static final long serialVersionUID = -1837080260374986980L;
163N/A
163N/A /**
163N/A * <p>Constructs a new <code>XPathFactoryConfigurationException</code> with the specified detail <code>message</code>.</p>
163N/A *
163N/A * <p>The <code>cause</code> is not initialized.</p>
163N/A *
163N/A * <p>If <code>message</code> is <code>null</code>,
163N/A * then a <code>NullPointerException</code> is thrown.</p>
163N/A *
163N/A * @param message The detail message.
163N/A *
163N/A * @throws NullPointerException When <code>message</code> is
163N/A * <code>null</code>.
163N/A */
163N/A public XPathFactoryConfigurationException(String message) {
163N/A super(message);
163N/A }
163N/A
163N/A /**
163N/A * <p>Constructs a new <code>XPathFactoryConfigurationException</code>
163N/A * with the specified <code>cause</code>.</p>
163N/A *
163N/A * <p>If <code>cause</code> is <code>null</code>,
163N/A * then a <code>NullPointerException</code> is thrown.</p>
163N/A *
163N/A * @param cause The cause.
163N/A *
163N/A * @throws NullPointerException if <code>cause</code> is <code>null</code>.
163N/A */
163N/A public XPathFactoryConfigurationException(Throwable cause) {
163N/A super(cause);
163N/A }
163N/A}
163N/A