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