- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- javax.imageio.IIOException
-
- javax.imageio.metadata.IIOInvalidTreeException
-
- All Implemented Interfaces:
-
Serializable
public class IIOInvalidTreeException extends IIOException
一个IIOInvalidTreeException
当被试图抛出IIOMetadata
对象来解析树IIOMetadataNode
小号失败。 可能存储导致解析错误的节点。 与任何解析错误一样,实际错误可能发生在与检测到错误的不同点。getOffendingNode
返回的节点只能被视为问题的实际性质的线索。
-
-
Field Summary
Fields Modifier and Type Field 描述 protected Node
offendingNode
Node
导致解析错误,或者是null
。
-
构造方法摘要
构造方法 Constructor 描述 IIOInvalidTreeException(String message, Throwable cause, Node offendingNode)
构造一个IIOInvalidTreeException
与消息字符串,来导致此异常的异常的参考,并以参考Node
导致解析错误。IIOInvalidTreeException(String message, Node offendingNode)
构造一个IIOInvalidTreeException
其中包含一条消息字符串,并引用了导致解析错误的Node
。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 Node
getOffendingNode()
返回导致解析错误的Node
。-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
字段详细信息
-
offendingNode
protected Node offendingNode
该Node
,导致了解析错误,或null
。
-
-
方法详细信息
-
getOffendingNode
public Node getOffendingNode()
返回导致解析错误的Node
。- 结果
-
有罪的
Node
。
-
-