Source : SaleItemNotFoundException.java

CS22120 Group Project - project source listings

Questions and comments on this file can be directed to this classes author: Paul Smith


package cs221.groupk.exceptions.database;
import cs221.groupk.exceptions.*;

/**
 * SaleItemNotFoundException is thrown internally within Disk when a requested
 * SaleItem is not Found.
 *
 * <P><I>Code spell-checked - Chris Milner - 5th December 2000.</I><P>
 *
 * @author <A HREF="mailto:[email protected]">Paul Smith</A>
 */
public class SaleItemNotFoundException extends CliffRailwayException
{
  /**
   * Default Constructor for Exception SaleItemNotFoundException.
   */
  public SaleItemNotFoundException()
  {
    super("Item Not Found Exception, SaleItem not found.");
  }

  /**
   * Overridden constructor for Exception SaleItemNotFoundException, passing
   * a cusom message.
   * @param String msg - message passed to super class.
   */
  public SaleItemNotFoundException(String msg)
  {
    super(msg);
  }
}


Up one level.

Page automatically generated on: 28/12/00 at: 7:58:16 PM.