01: package org.andromda.translation.ocl.testsuite;
02:
03: /**
04: * Any unchecked exception that will be thrown when an unexpected translator test exception occurs. Should be thrown
05: * when a test is not cofigured correctly.
06: */
07: public class TranslationTestProcessorException extends RuntimeException {
08:
09: /**
10: * Constructs an instance of TranslationTestProcessorException.
11: *
12: * @param th
13: */
14: public TranslationTestProcessorException(Throwable th) {
15: super (th);
16: }
17:
18: /**
19: * Constructs an instance of TranslationTestProcessorException.
20: *
21: * @param msg
22: */
23: public TranslationTestProcessorException(String msg) {
24: super (msg);
25: }
26:
27: /**
28: * Constructs an instance of TranslationTestProcessorException.
29: *
30: * @param msg
31: * @param th
32: */
33: public TranslationTestProcessorException(String msg, Throwable th) {
34: super(msg, th);
35: }
36:
37: }
|