blob: 0b605ebd8c509ca3de54c72165e53de5cfadb392 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package cz.crcs.ectester.common.test;
/**
* A TestException is an Exception that can be thrown during the running of a Testable,
* or a Test. It means that the Testable/TestSuite encountered an unexpected error
* and has to terminate.
*
* @author Jan Jancar johny@neuromancer.sk
*/
@SuppressWarnings("serial")
public class TestException extends RuntimeException {
public TestException(Throwable e) {
super(e);
}
}
|