summaryrefslogtreecommitdiffstats
path: root/Master/Reference Architectures and Patterns/EJB 3.0 Code/Gerald Examples/src/examples/shop/logic/PricerException.java
blob: e198a6a4f9450b97f512018c7d6a1b3b576fa724 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package examples.shop.logic;

/**
 * Exceptions thrown by Pricer
 */
public class PricerException extends Exception {

	public PricerException() {
		super();
	}

	public PricerException(Exception e) {
		super(e.toString());
	}

	public PricerException(String s) {
		super(s);
	}
}