View Javadoc
1   package org.andromda.core;
2   
3   /**
4    * The exception thrown when model validation fails.
5    *
6    * @author Chad Brandon
7    */
8   public class ModelValidationException
9       extends RuntimeException
10  {
11      private static final long serialVersionUID = 34L;
12  
13      /**
14       * Constructs an instance of ModelValidationException.
15       *
16       * @param message the validation message indicating the error.
17       */
18      public ModelValidationException(final String message)
19      {
20          super(message);
21      }
22  }