1 package org.andromda.translation.ocl.testsuite;
2
3
4
5
6
7 public class TranslationTestDiscovererException
8 extends RuntimeException
9 {
10 private static final long serialVersionUID = 34L;
11
12
13
14
15
16 public TranslationTestDiscovererException(Throwable th)
17 {
18 super(th);
19 }
20
21
22
23
24
25
26 public TranslationTestDiscovererException(String msg)
27 {
28 super(msg);
29 }
30
31
32
33
34
35
36
37 public TranslationTestDiscovererException(String msg, Throwable th)
38 {
39 super(msg, th);
40 }
41
42 }