View Javadoc
1   package org.andromda.translation.ocl.validation;
2   
3   import org.andromda.core.translation.TranslatorException;
4   
5   /**
6    * Any unchecked exception that will be thrown during ValidationTranslator processing.
7    *
8    * @author Chad Brandon
9    */
10  public class ValidationTranslatorException
11          extends TranslatorException
12  {
13      private static final long serialVersionUID = 34L;
14      /**
15       * Constructs a ValidationTranslatorException
16       *
17       * @param th
18       */
19      public ValidationTranslatorException(Throwable th)
20      {
21          super(th);
22      }
23  
24      /**
25       * Constructs a ValidationTranslatorException
26       *
27       * @param msg
28       */
29      public ValidationTranslatorException(String msg)
30      {
31          super(msg);
32      }
33  
34      /**
35       * Constructs a ValidationTranslatorException
36       *
37       * @param msg
38       * @param th
39       */
40      public ValidationTranslatorException(String msg, Throwable th)
41      {
42          super(msg, th);
43      }
44  
45  }