FileDocCategorySizeDatePackage
IOException.javaAPI DocAndroid 1.5 API1756Wed May 06 22:41:04 BST 2009java.io

IOException

public class IOException extends Exception
Signals a general, I/O-related error. Error details may be specified when calling the constructor, as usual. Note there are also several subclasses of this class for more specific error situations, such as {@link FileNotFoundException} or {@link EOFException}.
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public IOException()
Constructs a new {@code IOException} with its stack trace filled in.

since
Android 1.0


                        
      
        super();
    
public IOException(String detailMessage)
Constructs a new {@code IOException} with its stack trace and detail message filled in.

param
detailMessage the detail message for this exception.
since
Android 1.0

        super(detailMessage);
    
Methods Summary