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

org.testng.TestNGException Maven / Gradle / Ivy

There is a newer version: 7.10.1
Show newest version
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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy