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