Index (Frames) | Index (No Frames) | Package | Package Tree | Tree
java.io

Class FileNotFoundException

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


public class FileNotFoundException

extends IOException

This exception is thrown when an attempt is made to access a file that does not exist, or is inaccessible for some other reason (such as writing a read-only file).

Authors:

Constructor Summary

FileNotFoundException()

Create an exception without a descriptive error message.
FileNotFoundException(java.lang.String message)

Create an exception with a descriptive error message.

Constructor Details

FileNotFoundException

public FileNotFoundException()

Create an exception without a descriptive error message.


FileNotFoundException

public FileNotFoundException(java.lang.String message)

Create an exception with a descriptive error message.

Parameters: