View Javadoc
1   package org.andromda.core.server;
2   
3   /**
4    * This exception is thrown when a special situation is encountered within an
5    * {@link DefaultClient} instance.
6    *
7    * @author Chad Brandon
8    */
9   public class ClientException
10      extends RuntimeException
11  {
12      private static final long serialVersionUID = 34L;
13  
14      /**
15       * Constructor for ClientClientException.
16       */
17      public ClientException()
18      {
19          super();
20      }
21  
22      /**
23       * Constructor for ClientClientException.
24       *
25       * @param message the exception message
26       */
27      public ClientException(String message)
28      {
29          super(message);
30      }
31  
32      /**
33       * Constructor for ClientClientException.
34       *
35       * @param message the exception message
36       * @param parent the parent throwable
37       */
38      public ClientException(
39          String message,
40          Throwable parent)
41      {
42          super(message, parent);
43      }
44  
45      /**
46       * Constructor for ClientClientException.
47       *
48       * @param parent the parent throwable
49       */
50      public ClientException(Throwable parent)
51      {
52          super(parent);
53      }
54  }