模块  java.desktop

Class IIOInvalidTreeException

    • 字段详细信息

      • offendingNode

        protected Node offendingNode
        Node ,导致了解析错误,或 null
    • 构造方法详细信息

      • IIOInvalidTreeException

        public IIOInvalidTreeException​(String message,
                                       Node offendingNode)
        构造一个 IIOInvalidTreeException其中包含消息字符串和引起解析错误的 Node的引用。
        参数
        message - 包含解析失败原因的 String
        offendingNode - 导致异常的DOM Node ,或 null
      • IIOInvalidTreeException

        public IIOInvalidTreeException​(String message,
                                       Throwable cause,
                                       Node offendingNode)
        构造一个带有消息字符串的 IIOInvalidTreeException ,对引发此异常的异常的引用,以及导致解析错误的 Node的引用。
        参数
        message - 包含解析失败原因的 String
        cause - 导致发生此异常的 ThrowableError异常 )或 null
        offendingNode - 导致异常的DOM Node ,或 null
    • 方法详细信息

      • getOffendingNode

        public Node getOffendingNode()
        返回导致解析错误的 Node
        结果
        冒犯了 Node