blob: cc3cfda566a74d218340b40ca4ec11648ef9bcef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package cz.crcs.ectester.common.test;
/**
* An unexpected exception was thrown while running a TestSuite, outside Test
* or a Testable.
*
* @author Jan Jancar johny@neuromancer.sk
*/
public class TestSuiteException extends RuntimeException {
public TestSuiteException(Throwable e) {
super(e);
}
}
|