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

org.shakespeareframework.selenium.WebDriverSetupFailedException Maven / Gradle / Ivy

package org.shakespeareframework.selenium;

/**
 * {@link RuntimeException} to be thrown when a {@link WebDriverSupplier} failed to setup the {@link
 * org.openqa.selenium.WebDriver}.
 */
public class WebDriverSetupFailedException extends RuntimeException {

  /**
   * @param cause the causing {@link Exception}
   */
  public WebDriverSetupFailedException(Exception cause) {
    super(cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy