1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package net.sf.composite;
17
18 import net.sf.composite.util.NestableRuntimeException;
19
20 /***
21 * Indicates some problem was encountered while performing an operation related
22 * to object composition.
23 *
24 * @author Matt Sgarlata
25 * @since Dec 27, 2004
26 */
27 public class CompositeException extends NestableRuntimeException {
28
29 public CompositeException() {
30 super();
31 }
32 public CompositeException(String message) {
33 super(message);
34 }
35 public CompositeException(String message, Throwable cause) {
36 super(message, cause);
37 }
38 public CompositeException(Throwable cause) {
39 super(cause);
40 }
41
42 }