Module java.xml

Class SchemaFactoryConfigurationError

java.lang.Object
java.lang.Throwable
java.lang.Error
javax.xml.validation.SchemaFactoryConfigurationError
所有已实现的接口:
Serializable

public final class SchemaFactoryConfigurationError extends Error
当存在与模式工厂配置相关的问题时抛出。当系统属性中指定的模式工厂类无法找到或实例化时,通常会抛出此错误。
自 JDK 版本:
1.8
参见:
  • Constructor Details

    • SchemaFactoryConfigurationError

      public SchemaFactoryConfigurationError()
      创建一个没有详细消息的新 SchemaFactoryConfigurationError
    • SchemaFactoryConfigurationError

      public SchemaFactoryConfigurationError(String message)
      创建一个指定为错误消息的新 SchemaFactoryConfigurationError
      参数:
      message - 异常的错误消息。
    • SchemaFactoryConfigurationError

      public SchemaFactoryConfigurationError(Throwable cause)
      创建一个具有给定的 Throwable 基础原因的新 SchemaFactoryConfigurationError
      参数:
      cause - 要封装在 SchemaFactoryConfigurationError 中的异常或错误。
    • SchemaFactoryConfigurationError

      public SchemaFactoryConfigurationError(String message, Throwable cause)
      创建一个具有给定的 Throwable 基础原因和详细消息的新 SchemaFactoryConfigurationError
      参数:
      message - 详细消息。
      cause - 要封装在 SchemaFactoryConfigurationError 中的异常或错误。