java.lang.Object
java.lang.Throwable
java.lang.Error
javax.xml.validation.SchemaFactoryConfigurationError
- 所有已实现的接口:
Serializable
当架构工厂的配置存在问题时抛出。当无法找到或实例化系统属性中指定的架构工厂的类时,通常会抛出此错误。
- 自从:
- 1.8
- 参见:
-
构造方法总结
构造方法构造方法描述创建一个没有详细消息的新SchemaFactoryConfigurationError。SchemaFactoryConfigurationError(String message) 使用指定为错误消息的String创建一个新的SchemaFactoryConfigurationError。SchemaFactoryConfigurationError(String message, Throwable cause) 使用给定的Throwable基本原因和详细消息创建一个新的SchemaFactoryConfigurationError。使用给定的Throwable基本原因创建一个新的SchemaFactoryConfigurationError。 -
方法总结
在类 java.lang.Throwable 中声明的方法
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
构造方法详细信息
-
SchemaFactoryConfigurationError
public SchemaFactoryConfigurationError()创建一个没有详细消息的新SchemaFactoryConfigurationError。 -
SchemaFactoryConfigurationError
使用指定为错误消息的String创建一个新的SchemaFactoryConfigurationError。- 参数:
message- 异常的错误消息。
-
SchemaFactoryConfigurationError
使用给定的Throwable基本原因创建一个新的SchemaFactoryConfigurationError。- 参数:
cause- 要封装在 SchemaFactoryConfigurationError 中的异常或错误。
-
SchemaFactoryConfigurationError
使用给定的Throwable基本原因和详细消息创建一个新的SchemaFactoryConfigurationError。- 参数:
message- 详细信息。cause- 要封装在 SchemaFactoryConfigurationError 中的异常或错误。
-