<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">package com.ep.exception;

/**
 * 
 * @author Lance Dooley
 *
 */
public class PurchaseAmountExceededException extends BadPurchaseException {

	private static final long serialVersionUID = 1L;

	public PurchaseAmountExceededException() {
		super("Customer Purchasing Limit Has Been Exceeded!");
	}
	
	public PurchaseAmountExceededException(String message) {
		super(message);
	}
}

</pre></body></html>