View Javadoc
1   package org.andromda.translation.ocl.testsuite;
2   
3   /**
4    * Any unchecked exception that will be thrown when an unexpected translator test exception occurs. Should be thrown
5    * when a test is not configured correctly.
6    */
7   public class TranslationTestProcessorException
8           extends RuntimeException
9   {
10      private static final long serialVersionUID = 34L;
11      /**
12       * Constructs an instance of TranslationTestProcessorException.
13       *
14       * @param th
15       */
16      public TranslationTestProcessorException(Throwable th)
17      {
18          super(th);
19      }
20  
21      /**
22       * Constructs an instance of TranslationTestProcessorException.
23       *
24       * @param msg
25       */
26      public TranslationTestProcessorException(String msg)
27      {
28          super(msg);
29      }
30  
31      /**
32       * Constructs an instance of TranslationTestProcessorException.
33       *
34       * @param msg
35       * @param th
36       */
37      public TranslationTestProcessorException(String msg, Throwable th)
38      {
39          super(msg, th);
40      }
41  
42  }