/**
 *To throw an exception when a non-existant folder is given
 *
 *@author Dan Hawando
 *@author Ben kaiser
 *@author Josh Vickery
 *@version 1.0 of Octobre of 1999
 *
 */

public class FolderException
 extends Exception
{
  public FolderException(String Foldername)
    {
       super(Foldername);
    }//FolderException
}//FolderException class

