All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.testng.TestException Maven / Gradle / Ivy

There is a newer version: 7.10.1
Show newest version
package org.testng;

/**
 * Exception thrown when an exception happens while running a test
 * method.
 */
public class TestException extends TestNGException {

  private static final long serialVersionUID = -7946644025188038804L;

  public TestException(String s) {
    super(s);
  }

	public TestException(Throwable t) {
		super(t);
	}

  public TestException(String message, Throwable t) {
    super(message, t);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy