cz.zcu.fav.kiv.editor.controller.errors
Class FileNotFoundException

java.lang.Object
  extended by java.lang.Throwable
      extended by cz.zcu.fav.kiv.editor.controller.errors.FileNotFoundException
All Implemented Interfaces:
java.io.Serializable

public class FileNotFoundException
extends java.lang.Throwable
implements java.io.Serializable

The FileNotFoundException class is used when a configuration file, templates or their XML schema is missing.

Version:
1.0, 05/2007
Author:
Marta Vaclavikova
See Also:
Serialized Form

Constructor Summary
FileNotFoundException()
          Initializes a newly created empty FileNotFoundException.
FileNotFoundException(java.lang.String fileName)
          Initializes a newly created FileNotFoundException with missing file.
FileNotFoundException(java.lang.Throwable t)
          Initializes a newly created empty FileNotFoundException with the rised error.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FileNotFoundException

public FileNotFoundException(java.lang.String fileName)
Initializes a newly created FileNotFoundException with missing file.

Parameters:
fileName - the name of the missing file.

FileNotFoundException

public FileNotFoundException()
Initializes a newly created empty FileNotFoundException.


FileNotFoundException

public FileNotFoundException(java.lang.Throwable t)
Initializes a newly created empty FileNotFoundException with the rised error.

Parameters:
t - the rised error.