
/**
 * Custom exception class representing an improper use of the index
 * into a list.
 * 
 */
public class ListLocationException extends Exception
{
	public ListLocationException( )
	{
		super( "Location is invalid for this operation." );
	}
	
	public ListLocationException( String message )
	{
		super( message );
	}
}

