View Javadoc
1   package org.andromda.maven.plugin.andromdapp;
2   
3   /**
4    * An exception that is thrown when an unexpected error
5    * occurs during execution of a SchemaManagement instance.
6    *
7    * @author Chad Brandon
8    */
9   public class SchemaManagementException
10      extends RuntimeException
11  {
12      private static final long serialVersionUID = 34L;
13      /**
14       * Constructor for SchemaManagementException.
15       *
16       * @param message
17       */
18      public SchemaManagementException(String message)
19      {
20          super(message);
21      }
22  
23      /**
24       * Constructor for SchemaManagementException.
25       *
26       * @param message
27       * @param parent
28       */
29      public SchemaManagementException(
30          String message,
31          Throwable parent)
32      {
33          super(message, parent);
34      }
35  
36      /**
37       * Constructor for SchemaManagementException.
38       *
39       * @param message
40       */
41      public SchemaManagementException(Throwable message)
42      {
43          super(message);
44      }
45  }