File: PaymentException.java

package info (click to toggle)
libjdepend-java 2.9-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 800 kB
  • ctags: 781
  • sloc: java: 3,873; xml: 549; sh: 6; makefile: 6
file content (25 lines) | stat: -rw-r--r-- 586 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package epayment.framework;

/**
 * The <code>PaymentException</code> class is an
 * <code>Exception</code> thrown when a payment
 * processing error occurs.
 * <p>
 * This class is strictly an example.
 *
 * @author <a href="mailto:mike@clarkware.com">Mike Clark</a>
 * @author <a href="http://www.clarkware.com">Clarkware Consulting</a>
 */
 
public class PaymentException extends Exception {

	/**
	 * Constructs a <code>PaymentException</code> with
	 * the specified message.
 	 *
	 * @param message Message.
	 */
	public PaymentException(String message) {
		super (message);
	}	
}