/**
 * Exceptions that are thrown when things aren't found.
 *
 * @author Samuel A. Rebelsky
 * @version 1.0 of October 2000
 */
public class NotFoundException
  extends RuntimeException
{
  /** Just "Whoops, I couldn't find what you wanted.") */
  public NotFoundException() {
    super();
  } // NotFoundException()
  
  /** The more verbose "I couldn't find what you wanted because ...". */
  public NotFoundException(String reason) {
    super(reason);
  } // NotFoundException(String)
  
} // class NotFoundException

