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