01: package org.andromda.andromdapp;
02:
03: /**
04: * Thrown when an unexpected occur occurs during AndroMDApp execution.
05: *
06: * @author Chad Brandon
07: */
08: public class AndroMDAppException extends RuntimeException {
09: /**
10: * Constructs an instance of AndroMDAppException.
11: *
12: * @param parent
13: */
14: public AndroMDAppException(Throwable parent) {
15: super (parent);
16: }
17:
18: /**
19: * Constructs an instance of AndroMDAppException.
20: *
21: * @param message
22: */
23: public AndroMDAppException(String message) {
24: super (message);
25: }
26:
27: /**
28: * Constructs an instance of AndroMDAppException.
29: *
30: * @param message
31: * @param parent
32: */
33: public AndroMDAppException(String message, Throwable parent) {
34: super(message, parent);
35: }
36: }
|