| Package java.io |
Previous |
Java API |
Index |
Next |
public class java.io.IOException
extends java.lang.Exception
{
// Constructors
public IOException();
public IOException(String s);
}
Signals that an I/O exception of some sort has occurred.
public IOException()Constructs an IOException with no detail message.
public IOException(String s)Constructs an IOException with the specified detail message.
Parameter Description s the detail message
| © 1996 Sun Microsystems, Inc. All rights reserved. |