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

org.testng.internal.thread.ThreadTimeoutException Maven / Gradle / Ivy

There is a newer version: 7.10.2
Show newest version
package org.testng.internal.thread;

/** Exception used to signal a thread timeout. */
public class ThreadTimeoutException extends Exception {

  private static final long serialVersionUID = 7009400729783393548L;

  public ThreadTimeoutException(String msg) {
    super(msg);
  }

  public ThreadTimeoutException(Throwable cause) {
    super(cause);
  }

  public ThreadTimeoutException(String msg, Throwable cause) {
    super(msg, cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy