- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Error
-
- javax.xml.parsers.FactoryConfigurationError
-
- All Implemented Interfaces:
-
Serializable
public class FactoryConfigurationError extends Error
当与Parser工厂存在配置问题时抛出。 当系统属性中指定的解析器工厂的类无法找到或实例化时,通常会抛出此错误。- 从以下版本开始:
- 1.4
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 FactoryConfigurationError()
创建一个新的FactoryConfigurationError
没有详细的消息。FactoryConfigurationError(异常 e)
创建一个新的FactoryConfigurationError
与给定的异常
基本原因的错误。FactoryConfigurationError(异常 e, String msg)
创建一个新的FactoryConfigurationError
与给定的异常
基本原因和详细信息。FactoryConfigurationError(String msg)
创建一个新的FactoryConfigurationError
,其中String
指定为错误消息。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 Throwable
getCause()
使用JDK1.4的异常链接机制异常
getException()
返回导致引发此异常的实际异常(如果有的话)。String
getMessage()
返回此错误的消息(如果有)。-
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, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
FactoryConfigurationError
public FactoryConfigurationError()
创建一个新的FactoryConfigurationError
没有详细信息。
-
FactoryConfigurationError
public FactoryConfigurationError(String msg)
创建一个新的FactoryConfigurationError
,其中String
指定为错误消息。- 参数
-
msg
- 异常的错误消息。
-
FactoryConfigurationError
public FactoryConfigurationError(异常 e)
创建一个新的FactoryConfigurationError
与给定的异常
基本原因的错误。- 参数
-
e
- 要封装在FactoryConfigurationError中的异常。
-
-
方法详细信息
-
getMessage
public String getMessage()
返回此错误的消息(如果有)。 如果没有异常的消息,并且有一个封装的异常,则该异常的消息(如果存在)将被返回。 否则将返回封装异常的名称。- 重写:
-
getMessage
在Throwable
- 结果
- 错误消息。
-
getException
public 异常 getException()
返回导致引发此异常的实际异常(如果有的话)。- 结果
- 封装的异常,如果没有,则为null。
-
-