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