blob: 01d195ca4d8574e7e6654af8f6a5216abb9946cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package cz.crcs.ectester.common.test;
/**
*
* @author Jan Jancar johny@neuromancer.sk
*/
public class TestException extends Exception {
public TestException(Throwable e) {
super(e);
}
}
|