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

org.openqa.selenium.TimeoutException Maven / Gradle / Ivy

There is a newer version: 4.20.0
Show newest version
package org.openqa.selenium;

/**
 * Thrown when a command does not complete in enough time.
 */
public class TimeoutException extends WebDriverException {

  public TimeoutException() {
  }

  public TimeoutException(String message) {
    super(message);
  }

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

  public TimeoutException(String message, Throwable cause) {
    super(message, cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy