/* Copyright 2001, Pajato Systems Group Copyright 2001, Allaire Corporation */ package allaire.samples.invoice; /** * InvoiceException provides a base from which to tailor exception * information. * * @author Paul Reilly, Pajato Systems Group <pmr@pajato.com> * @version 0.1 */ public class InvoiceException extends Exception { public InvoiceException( String reason ) { super( reason ); } }