java.lang.Object
java.lang.Throwable
java.lang.Error
javax.xml.validation.SchemaFactoryConfigurationError
- 所有已实现的接口:
-
Serializable
当存在与模式工厂配置相关的问题时抛出。当系统属性中指定的模式工厂类无法找到或实例化时,通常会抛出此错误。
- 自 JDK 版本:
- 1.8
- 参见:
-
Constructor Summary
ConstructorDescription创建一个没有详细消息的新SchemaFactoryConfigurationError
。SchemaFactoryConfigurationError
(String message) 创建一个指定为错误消息的新SchemaFactoryConfigurationError
。SchemaFactoryConfigurationError
(String message, Throwable cause) 创建一个具有给定的Throwable
基础原因和详细消息的新SchemaFactoryConfigurationError
。创建一个具有给定的Throwable
基础原因的新SchemaFactoryConfigurationError
。 -
Method Summary
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SchemaFactoryConfigurationError
public SchemaFactoryConfigurationError()创建一个没有详细消息的新SchemaFactoryConfigurationError
。 -
SchemaFactoryConfigurationError
创建一个指定为错误消息的新SchemaFactoryConfigurationError
。- 参数:
-
message
- 异常的错误消息。
-
SchemaFactoryConfigurationError
创建一个具有给定的Throwable
基础原因的新SchemaFactoryConfigurationError
。- 参数:
-
cause
- 要封装在 SchemaFactoryConfigurationError 中的异常或错误。
-
SchemaFactoryConfigurationError
创建一个具有给定的Throwable
基础原因和详细消息的新SchemaFactoryConfigurationError
。- 参数:
-
message
- 详细消息。 -
cause
- 要封装在 SchemaFactoryConfigurationError 中的异常或错误。
-