package cs221.groupk.exceptions.database;
import cs221.groupk.exceptions.*;
/**
* SaleItemListIDInvalidException is thrown when a lookup is performed using
* SaleItemList's ID that does not exist.
*
* <P><I>Code spell-checked - Chris Milner - 5th December 2000.</I><P>
*
* @author <A HREF="mailto:[email protected]">Paul Smith</A>
*/
public class SaleItemListIDInvalidException extends CliffRailwayException
{
/**
* Default Constructor for Exception SaleItemListIDInvalidException.
*/
public SaleItemListIDInvalidException()
{
super("The specifed SaleItemList could not be found.");
}
/**
* Overridden constructor for Exception SaleItemListIDInvalidException,
* passing a custom message.
* @param String msg - message passed to super class.
*/
public SaleItemListIDInvalidException(String msg)
{
super(msg);
}
}
Page automatically generated on: 28/12/00 at: 7:58:16 PM.