org.testng.TestNGException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testng Show documentation
Show all versions of testng Show documentation
Testing framework for Java
package org.testng;
/** The base class for all exceptions thrown by TestNG. */
public class TestNGException extends RuntimeException {
private static final long serialVersionUID = -422675971506425913L;
public TestNGException(Throwable t) {
super(t);
}
/** @param string */
public TestNGException(String string) {
super("\n" + string);
}
public TestNGException(String string, Throwable t) {
super("\n" + string, t);
}
}