com.nordstrom.automation.selenium.exceptions.DriverNotAvailableException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenium-foundation Show documentation
Show all versions of selenium-foundation Show documentation
Selenium Foundation is an automation framework designed to extend and enhance the capabilities provided by Selenium (WebDriver).
package com.nordstrom.automation.selenium.exceptions;
import com.nordstrom.automation.selenium.core.TestBase;
/**
* This exception is thrown by {@link TestBase#getDriver} when no driver is available.
*/
public class DriverNotAvailableException extends RuntimeException {
private static final long serialVersionUID = 657965846077748022L;
/**
* Constructor for exception with default message.
*/
public DriverNotAvailableException() {
super("No driver was found in the current test context");
}
}