View Javadoc

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