summaryrefslogtreecommitdiffstats
path: root/Master/Reference Architectures and Patterns/EJB 3.0 Code/Gerald Examples/src/examples/shop/logic/OrderException.java
blob: bd08de0ec4cc1f4d4d86041ecb957487ac79dd17 (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 Order
 */
public class OrderException extends Exception {

	public OrderException() {
		super();
	}

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

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