Class | Tree | Index | Help
PREV CLASS | NEXT CLASS FRAMES  | NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD DETAIL:  FIELD | CONSTR | METHOD

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 no actual file could be opened for a specified path name. See the contructors for FileInputStream and FileOutputStream.

Since:
JDK1.0
Version:
1.15, 06/29/98
See Also:
Serialized Form

Fields inherited from class java.lang.Throwable
backtrace, detailMessage, serialVersionUID
 
Constructor Summary
FileNotFoundException()
          Constructs a FileNotFoundException with null as its error detail message.
FileNotFoundException(java.lang.String s)
          Constructs a FileNotFoundException with the specified detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace0, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notifyAll, notify, registerNatives, toString, wait, wait, wait
 

Constructor Detail

FileNotFoundException

public FileNotFoundException()
Constructs a FileNotFoundException with null as its error detail message.

FileNotFoundException

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

Class | Tree | Index | Help
PREV CLASS | NEXT CLASS FRAMES  | NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD DETAIL:  FIELD | CONSTR | METHOD