java.io

Class 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).

UNKNOWN: updated to 1.4

Constructor Summary
FileNotFoundException()
Create an exception without a descriptive error message.
FileNotFoundException(String message)
Create an exception with a descriptive error message.

Constructor Detail

FileNotFoundException

public FileNotFoundException()
Create an exception without a descriptive error message.

FileNotFoundException

public FileNotFoundException(String message)
Create an exception with a descriptive error message.

Parameters: message the descriptive error message