FileDocCategorySizeDatePackage
IIOInvalidTreeException.javaAPI DocAndroid 1.5 API2312Wed May 06 22:41:54 BST 2009javax.imageio.metadata

IIOInvalidTreeException

public class IIOInvalidTreeException extends IIOException
The IIOInvalidTreeException provides notification about fails of IIOMetadataNodes tree parsing by IIOMetadata object.
since
Android 1.0

Fields Summary
protected Node
offendingNode
The offending node.
Constructors Summary
public IIOInvalidTreeException(String message, Node offendingNode)
Instantiates an IIOInvalidTreeException with the specified detailed message and specified offending Node.

param
message the detailed message.
param
offendingNode the 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.

param
message the detailed message.
param
cause the cause of this exception.
param
offendingNode the offending node.

        super(message, cause);
        this.offendingNode = offendingNode;
    
Methods Summary
public org.w3c.dom.NodegetOffendingNode()
Gets the offending node.

return
the offending node.

        return offendingNode;