01: package test.tck;
02:
03: /**
04: * This class serves to wrap exceptions that were thrown by the Tested
05: * Implementation and that do not reflect a test failure but rather
06: * an error that prevented the TCK from performing a test.
07: *
08: * @author Emil Ivov
09: * @version 1.0
10: */
11:
12: public class TiUnexpectedError extends Error {
13:
14: public TiUnexpectedError(String message) {
15: super (message);
16: }
17:
18: public TiUnexpectedError(String message, Throwable cause) {
19: super (message, cause);
20: }
21:
22: public TiUnexpectedError(Throwable cause) {
23: super(cause);
24: }
25: }
|