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

com.pega.uiframework.exception.InvalidLocatorStrategyException Maven / Gradle / Ivy

The newest version!
package com.pega.uiframework.exception;

/**
 * Created by mekak2 on 3/29/17.
 */
/**
 * Throw this exception when the locator strategies do not match with the
 * locator startegies provided by Selenium/WebDriver.
 */
public class InvalidLocatorStrategyException extends Exception
{
    private static final long serialVersionUID = 1L;

    public InvalidLocatorStrategyException()
    {}

    public InvalidLocatorStrategyException(final String message)
    {
        super(message);
    }

    public InvalidLocatorStrategyException(final String message, final Throwable cause)
    {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy