Sharkysoft home

lava.io
Class DirectoryNotFoundException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.io.IOException
                    |
                    +--java.io.FileNotFoundException
                          |
                          +--lava.io.DirectoryNotFoundException
All Implemented Interfaces:
java.io.Serializable

public class DirectoryNotFoundException
extends java.io.FileNotFoundException

Indicates invalid directory name.

Details: A DirectoryNotFoundException indicates that a specified directory could not be found, presumably because it doesn't exist.

See Also:
Serialized Form

Constructor Summary
DirectoryNotFoundException()
          Constructs an instance of this class with no detail message.
DirectoryNotFoundException(java.io.File f)
          Constructs an instance of this class with a detail message specifying the invalid directory name.
DirectoryNotFoundException(java.lang.String s)
          Constructs an instance of this class with the given detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DirectoryNotFoundException

public DirectoryNotFoundException()
Constructs an instance of this class with no detail message.

DirectoryNotFoundException

public DirectoryNotFoundException(java.io.File f)
Constructs an instance of this class with a detail message specifying the invalid directory name.
Parameters:
f - the file that should have been a directory, but was not

DirectoryNotFoundException

public DirectoryNotFoundException(java.lang.String s)
Constructs an instance of this class with the given detail message.
Parameters:
s - the detail message

Sharkysoft home