IIOInvalidTreeExceptionpublic class IIOInvalidTreeException extends IIOException The IIOInvalidTreeException provides notification about fails of
IIOMetadataNodes tree parsing by IIOMetadata object. |
Fields Summary |
---|
protected Node | offendingNodeThe offending node. |
Constructors Summary |
---|
public IIOInvalidTreeException(String message, Node offendingNode)Instantiates an IIOInvalidTreeException with the specified detailed
message and specified offending Node.
super(message);
this.offendingNode = offendingNode;
| public IIOInvalidTreeException(String message, Throwable cause, Node offendingNode)Instantiates a new IIOInvalidTreeException with the specified detailed
message and specified offending Node.
super(message, cause);
this.offendingNode = offendingNode;
|
Methods Summary |
---|
public org.w3c.dom.Node | getOffendingNode()Gets the offending node.
return offendingNode;
|
|