blob: 5e9e6b6e6ee697f8c767264b6799ff6e1dd89c22 [file] [log] [blame]
package org.testng;
/**
* Exception thrown when an exception happens while running a test
* method.
*
* @author Cedric Beust, Apr 26, 2004
*
*/
public class TestException extends TestNGException {
/* generated */
private static final long serialVersionUID = -7946644025188038804L;
public TestException(String s) {
super(s);
}
public TestException(Throwable t) {
super(t);
}
}