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

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

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

/**
 * Created by mekak2 on 3/29/17.
 */
/**
 * Throw this exception when property is not found in properties file. For
 * example framework will throw exception when locator is used with
 * Selenium/WebDriver commands but it's not present in object repository.
 */
public class PropertyNotFoundException extends Exception
{
    private static final long serialVersionUID = 1L;

    public PropertyNotFoundException()
    {}

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

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy