public class

FileNotFoundException

extends IOException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.io.IOException
         ↳ com.neomades.io.file.FileNotFoundException

Class Overview

Signals that an attempt to open the file denoted by a specified pathname has failed.

Summary

Public Constructors
FileNotFoundException()
Constructs a FileNotFoundException with null as its error detail message.
FileNotFoundException(String s)
Constructs a FileNotFoundException with the specified detail message.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public FileNotFoundException ()

Constructs a FileNotFoundException with null as its error detail message.

public FileNotFoundException (String s)

Constructs a FileNotFoundException with the specified detail message. The string s can be retrieved later by the Throwable.getMessage() method of class java.lang.Throwable.

Parameters
s the detail message.