1 package org.andromda.maven.plugin.andromdapp.script;
2
3 /**
4 * An exception thrown when an unexpected exception occurs during
5 * execution of the ScriptClassGenerator.
6 *
7 * @author Chad Brandon
8 */
9 public class ScriptClassGeneratorException
10 extends RuntimeException
11 {
12 private static final long serialVersionUID = 34L;
13 /**
14 * Constructor for ScriptClassGeneratorException.
15 *
16 * @param message the exception message.
17 * @param parent the parent exception.
18 */
19 public ScriptClassGeneratorException(
20 String message,
21 Throwable parent)
22 {
23 super(message, parent);
24 }
25
26 /**
27 * Constructor for ScriptClassGeneratorException.
28 *
29 * @param message the exception message
30 */
31 public ScriptClassGeneratorException(String message)
32 {
33 super(message);
34 }
35
36 /**
37 * Constructor for ScriptClassGeneratorException.
38 *
39 * @param parent the parent exception
40 */
41 public ScriptClassGeneratorException(Throwable parent)
42 {
43 super(parent);
44 }
45 }