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