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 DefaultServer} instance.
6    *
7    * @author Chad Brandon
8    */
9   public class ServerException
10      extends RuntimeException
11  {
12      private static final long serialVersionUID = 34L;
13  
14      /**
15       * Constructor for ServerServerException.
16       *
17       * @param message the exception message
18       */
19      public ServerException(String message)
20      {
21          super(message);
22      }
23  
24      /**
25       * Constructor for ServerServerException.
26       *
27       * @param message the exception message
28       * @param parent the parent throwable
29       */
30      public ServerException(
31          String message,
32          Throwable parent)
33      {
34          super(message, parent);
35      }
36  
37      /**
38       * Constructor for ServerServerException.
39       *
40       * @param parent the parent throwable
41       */
42      public ServerException(Throwable parent)
43      {
44          super(parent);
45      }
46  }