01: package org.andromda.core.engine;
02:
03: /**
04: * Any unchecked exception that will be thrown during the execution of the
05: * ModelProcessor
06: */
07: public class ModelProcessorException extends RuntimeException {
08: /**
09: * Constructs an instance of ModelProcessorException.
10: *
11: * @param parent the parent throwable.
12: */
13: public ModelProcessorException(Throwable parent) {
14: super (parent);
15: }
16:
17: /**
18: * Constructs an instance of ModelProcessorException.
19: *
20: * @param message the exception message.
21: */
22: public ModelProcessorException(String message) {
23: super (message);
24: }
25:
26: /**
27: * Constructs an instance of ModelProcessorException.
28: *
29: * @param message the exception message.
30: * @param parent the parent throwable.
31: */
32: public ModelProcessorException(String message, Throwable parent) {
33: super(message, parent);
34: }
35: }
|