Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)

Class java.io.FileNotFoundException

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

public class FileNotFoundException
extends IOException

Signals that a file could not be found.


Constructor Index

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

Constructors

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

FileNotFoundException
 public FileNotFoundException(String s)
Constructs a FileNotFoundException with the specified detail message.

Parameters:
s - the detail message.

Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)