com.nordstrom.automation.selenium.exceptions.InitialPageNotSpecifiedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenium3-foundation Show documentation
Show all versions of selenium3-foundation Show documentation
Selenium3 Foundation is an automation framework designed to extend and enhance the capabilities provided by Selenium 3.0 (WebDriver).
package com.nordstrom.automation.selenium.exceptions;
/**
* This exception is thrown if no initial page was specified.
*/
public class InitialPageNotSpecifiedException extends RuntimeException {
private static final long serialVersionUID = -6182879162513331011L;
/**
* Constructor for exception with default message.
*/
public InitialPageNotSpecifiedException() {
super("No initial page has been specified");
}
}