| Package java.io |
Previous |
Java API |
Index |
Next |
public class java.io.FileNotFoundException
extends java.io.IOException
{
// Constructors
public FileNotFoundException();
public FileNotFoundException(String s);
}
Signals that a file could not be found.
public FileNotFoundException()Constructs a FileNotFoundException with no detail message.
public FileNotFoundException(String s)Constructs a FileNotFoundException with the specified detail message.
Parameter Description s the detail message
| © 1996 Sun Microsystems, Inc. All rights reserved. |