Class java.io.FileNotFoundException
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.io.FileNotFoundException

Object
   |
   +----Throwable
           |
           +----Exception
                   |
                   +----IOException
                           |
                           +----java.io.FileNotFoundException

public class FileNotFoundException
extends IOException
Signals that a file could not be found.

Version:
1.12, 07/01/98
Author:
unascribed
Since:
JDK1.0

Constructor Index

 o java.io.FileNotFoundException()
Constructs a FileNotFoundException with no detail message.
 o java.io.FileNotFoundException(String)
Constructs a FileNotFoundException with the specified detail message.

Constructors

 o FileNotFoundException
public FileNotFoundException()
Constructs a FileNotFoundException with no detail message.

Since:
JDK1.0
 o FileNotFoundException
public FileNotFoundException(String s)
Constructs a FileNotFoundException with the specified detail message.

Parameters:
s - the detail message.
Since:
JDK1.0

All Packages  Class Hierarchy  This Package  Previous  Next  Index