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