FileDocCategorySizeDatePackage
IIOException.javaAPI DocAndroid 1.5 API1726Wed May 06 22:41:54 BST 2009javax.imageio

IIOException

public class IIOException extends IOException
The IIOException class indicates errors in reading/writing operations.
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
The Constant serialVersionUID.
Constructors Summary
public IIOException(String message)
Instantiates a new IIOException.

param
message the detailed message.


                              
       
        super(message);
    
public IIOException(String message, Throwable cause)
Instantiates a new IIOException.

param
message the detailed message.
param
cause the cause of this exception.

        super(message);
        initCause(cause);
    
Methods Summary