public class FactoryConfigurationError
extends Error
java.lang.Object | |||
↳ | java.lang.Throwable | ||
↳ | java.lang.Error | ||
↳ | javax.xml.parsers.FactoryConfigurationError |
当存在解析器工厂配置问题时抛出。 当系统属性中指定的解析器工厂的类无法找到或实例化时,通常会引发此错误。
Public constructors |
|
---|---|
FactoryConfigurationError() 创建一个新的 |
|
FactoryConfigurationError(String msg) 创建一个新的 |
|
FactoryConfigurationError(异常 e) 用给定的 |
|
FactoryConfigurationError(异常 e, String msg) 用给定的 |
Public methods |
|
---|---|
异常 |
getException() 返回引发此异常的实际异常(如果有的话)。 |
String |
getMessage() 返回此错误的消息(如果有)。 |
Inherited methods |
|
---|---|
From class java.lang.Throwable
|
|
From class java.lang.Object
|
FactoryConfigurationError ()
创建一个新的 FactoryConfigurationError
,没有详细信息。
FactoryConfigurationError (String msg)
创建一个新的 FactoryConfigurationError
,并指定 String
作为错误消息。
Parameters | |
---|---|
msg |
String : The error message for the exception. |
FactoryConfigurationError (异常 e)
使用给定的 异常
错误的基本原因创建一个新的 FactoryConfigurationError
。
Parameters | |
---|---|
e |
异常 : The exception to be encapsulated in a FactoryConfigurationError. |
FactoryConfigurationError (异常 e, String msg)
用给定的 异常
基本原因和详细信息创建一个新的 FactoryConfigurationError
。
Parameters | |
---|---|
e |
异常 : The exception to be encapsulated in a FactoryConfigurationError |
msg |
String : The detail message. |
异常 getException ()
返回引发此异常的实际异常(如果有的话)。
Returns | |
---|---|
异常 |
The encapsulated exception, or null if there is none. |
String getMessage ()
返回此错误的消息(如果有)。 如果这个异常没有消息,并且有封装异常,那么该异常的消息(如果存在)将被返回。 否则将返回封装异常的名称。
Returns | |
---|---|
String |
The error message. |