01: package epayment.framework;
02:
03: /**
04: * The <code>PaymentException</code> class is an
05: * <code>Exception</code> thrown when a payment
06: * processing error occurs.
07: * <p>
08: * This class is strictly an example.
09: *
10: * @author <a href="mailto:mike@clarkware.com">Mike Clark</a>
11: * @author <a href="http://www.clarkware.com">Clarkware Consulting</a>
12: */
13:
14: public class PaymentException extends Exception {
15:
16: /**
17: * Constructs a <code>PaymentException</code> with
18: * the specified message.
19: *
20: * @param message Message.
21: */
22: public PaymentException(String message) {
23: super(message);
24: }
25: }
|