模块  java.xml
软件包  javax.xml.validation

Class SchemaFactoryConfigurationError

  • 实现的所有接口
    Serializable

    public final class SchemaFactoryConfigurationError
    extends Error
    当存在与Schema Factories配置的问题时抛出。 当无法找到或实例化系统属性中指定的模式工厂的类时,通常会抛出此错误。
    从以下版本开始:
    1.8
    另请参见:
    Serialized Form
    • 构造方法详细信息

      • SchemaFactoryConfigurationError

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

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

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

        public SchemaFactoryConfigurationError​(String message,
                                               Throwable cause)
        使用给定的 Throwable基本原因和详细信息创建一个新的 SchemaFactoryConfigurationError
        参数
        cause - 要封装在SchemaFactoryConfigurationError中的异常或错误。
        message - 详细信息。