org.openqa.selenium.TimeoutException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenium-api Show documentation
Show all versions of selenium-api Show documentation
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
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);
}
}