/**
 * Exceptions that are thrown when someone tries to access or modify
 * an invalid folder or use a folder in an inappropriate way.
 *
 * @author Samuel A. Rebelsky
 * @version 1.0 of October 1999
 */
public class FolderException
  extends Exception
{
  /** "Sorry, can't do that with that folder." */
  public FolderException() {
    super();
  } // FolderException()
  
  /** "I refuse to cooperate because ...." */
  public FolderException(String reason) {
    super(reason);
  } // FolderException(String)
  
} // class FolderException

