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