01: package org.andromda.translation.ocl.validation;
02:
03: import org.andromda.core.translation.TranslatorException;
04:
05: /**
06: * Any unchecked exception that will be thrown during ValidationTranslator processing.
07: *
08: * @author Chad Brandon
09: */
10: public class ValidationTranslatorException extends TranslatorException {
11:
12: /**
13: * Constructs a ValidationTranslatorException
14: *
15: * @param th
16: */
17: public ValidationTranslatorException(Throwable th) {
18: super (th);
19: }
20:
21: /**
22: * Constructs a ValidationTranslatorException
23: *
24: * @param msg
25: */
26: public ValidationTranslatorException(String msg) {
27: super (msg);
28: }
29:
30: /**
31: * Constructs a ValidationTranslatorException
32: *
33: * @param msg
34: * @param th
35: */
36: public ValidationTranslatorException(String msg, Throwable th) {
37: super(msg, th);
38: }
39:
40: }
|