01: package org.andromda.maven.plugin.andromdapp.script;
02:
03: /**
04: * An exception thrown when an unexpected exception occurs during
05: * execution of the ScriptClassGenerator.
06: *
07: * @author Chad Brandon
08: */
09: public class ScriptClassGeneratorException extends RuntimeException {
10: /**
11: * Constructor for ScriptClassGeneratorException.
12: *
13: * @param message the exception message.
14: * @param parent the parent exception.
15: */
16: public ScriptClassGeneratorException(String message,
17: Throwable parent) {
18: super (message, parent);
19: }
20:
21: /**
22: * Constructor for ScriptClassGeneratorException.
23: *
24: * @param message the exception message
25: */
26: public ScriptClassGeneratorException(String message) {
27: super (message);
28: }
29:
30: /**
31: * Constructor for ScriptClassGeneratorException.
32: *
33: * @param parent the parent exception
34: */
35: public ScriptClassGeneratorException(Throwable parent) {
36: super(parent);
37: }
38: }
|