package cs221.groupk.exceptions.database; import cs221.groupk.exceptions.*; /** * SaleItemIDInvalidException * * <P><I>Code spell-checked - Chris Milner - 5th December 2000.</I><P> * * @author <A HREF="mailto:[email protected]">Paul Smith</A> */ public class SaleItemIDInvalidException extends CliffRailwayException { /** * Default Constructor for Exception SaleItemIDInvalidException. */ public SaleItemIDInvalidException() { super("SaleItem ID invalid. The ID must be unique to all SaleItems among" + " among all SaleItemList Objects"); } /** * Overridden constructor for Exception SaleItemIDInvalidException, * passing a custom message. * @param String msg - message passed to super class. */ public SaleItemIDInvalidException(String msg) { super(msg); } }Page automatically generated on: 28/12/00 at: 7:58:15 PM.