KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > epayment > framework > PaymentException


1 package epayment.framework;
2
3 /**
4  * The <code>PaymentException</code> class is an
5  * <code>Exception</code> thrown when a payment
6  * processing error occurs.
7  * <p>
8  * This class is strictly an example.
9  *
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 JavaDoc {
15
16     /**
17      * Constructs a <code>PaymentException</code> with
18      * the specified message.
19      *
20      * @param message Message.
21      */

22     public PaymentException(String JavaDoc message) {
23         super (message);
24     }
25 }
26
Popular Tags