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