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