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