- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.xml.xpath.XPathException
-
- javax.xml.xpath.XPathFactoryConfigurationException
-
- All Implemented Interfaces:
-
Serializable
public class XPathFactoryConfigurationException extends XPathException
XPathFactoryConfigurationException表示XPathFactory环境中的配置错误。- 从以下版本开始:
- 1.5
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 XPathFactoryConfigurationException(String message)构造一个新的XPathFactoryConfigurationException与指定的细节message。XPathFactoryConfigurationException(Throwable cause)构造一个新的XPathFactoryConfigurationException与指定的cause。
-
方法摘要
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString
-
Methods inherited from class javax.xml.xpath.XPathException
getCause, printStackTrace, printStackTrace, printStackTrace
-
-
-
-
构造方法详细信息
-
XPathFactoryConfigurationException
public XPathFactoryConfigurationException(String message)
构造一个新的XPathFactoryConfigurationException与指定的细节message。cause未初始化。如果
message是null,那么抛出一个NullPointerException。- 参数
-
message- 详细信息。 - 异常
-
NullPointerException-message是null。
-
XPathFactoryConfigurationException
public XPathFactoryConfigurationException(Throwable cause)
构造一个新的XPathFactoryConfigurationException与指定的cause。如果
cause是null,那么抛出一个NullPointerException。- 参数
-
cause- 原因。 - 异常
-
NullPointerException- 如果cause是null。
-
-