blob: 291a073de19c005fbbd7a0c5efb37269654d3922 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
*/
public class TestException extends RuntimeException {
public TestException(Throwable e) {
super(e);
}
}
|