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

com.nordstrom.automation.selenium.exceptions.InitialPageNotSpecifiedException Maven / Gradle / Ivy

Go to download

Selenium3 Foundation is an automation framework designed to extend and enhance the capabilities provided by Selenium 3.0 (WebDriver).

There is a newer version: 1.0.4
Show newest version
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");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy