KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > xpetstore > services > order > exceptions > CreditCardException


1 package xpetstore.services.order.exceptions;
2
3 import xpetstore.util.ChainedException;
4
5
6 /**
7  * @author <a HREF="mailto:tchbansi@sourceforge.net">Herve Tchepannou</a>
8  */

9 public class CreditCardException
10     extends ChainedException
11 {
12     //~ Constructors -----------------------------------------------------------
13

14     /**
15      * Constructor for CreditCardException.
16      */

17     public CreditCardException( )
18     {
19         super( );
20     }
21
22     /**
23      * Constructor for CreditCardException.
24      * @param message
25      */

26     public CreditCardException( String JavaDoc message )
27     {
28         super( message );
29     }
30
31     /**
32      * Constructor for CreditCardException.
33      * @param message
34      * @param cause
35      */

36     public CreditCardException( String JavaDoc message,
37                                 Throwable JavaDoc cause )
38     {
39         super( message, cause );
40     }
41
42     /**
43      * Constructor for CreditCardException.
44      * @param cause
45      */

46     public CreditCardException( Throwable JavaDoc cause )
47     {
48         super( cause );
49     }
50 }
51
Popular Tags