Module  java.xml
软件包  javax.xml.transform

Class TransformerFactoryConfigurationError

  • All Implemented Interfaces:
    Serializable


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

      • TransformerFactoryConfigurationError

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

        public TransformerFactoryConfigurationError​(String msg)
        创建一个新的 TransformerFactoryConfigurationError ,其中 String指定为错误消息。
        参数
        msg - 异常的错误消息。
      • TransformerFactoryConfigurationError

        public TransformerFactoryConfigurationError​(异常 e)
        创建一个新的 TransformerFactoryConfigurationError与给定的 异常基本原因的错误。
        参数
        e - 要封装在TransformerFactoryConfigurationError中的异常。
      • TransformerFactoryConfigurationError

        public TransformerFactoryConfigurationError​(异常 e,
                                                    String msg)
        创建一个新的 TransformerFactoryConfigurationError与给定的 异常基本原因和详细信息。
        参数
        e - 要封装在TransformerFactoryConfigurationError中的异常
        msg - 详细信息。
    • 方法详细信息

      • getMessage

        public String getMessage​()
        返回此错误的消息(如果有)。 如果没有异常的消息,并且有一个封装的异常,那么将返回该异常的消息。
        重写:
        getMessageThrowable
        结果
        错误消息。
      • getException

        public 异常 getException​()
        返回导致引发此异常的实际异常(如果有的话)。
        结果
        封装的异常,如果没有,则为null。
      • getCause

        public Throwable getCause​()
        使用JDK1.4的异常链接机制
        重写:
        getCauseThrowable
        结果
        这个可 null的原因是 null如果原因不存在或不明。