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