blob: 2d1ea09b7d612956debc0feca1ca58074c32968c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
*/
@SuppressWarnings("serial")
public class TestSuiteException extends RuntimeException {
public TestSuiteException(Throwable e) {
super(e);
}
}
|