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

org.finra.jtaf.ewd.properties.MissingGUIPropertyException Maven / Gradle / Ivy

Go to download

ExtWebDriver is an enhancement to the WebDriver API, with features such as widget library, session management and extended functions

There is a newer version: 1.5.6
Show newest version
package org.finra.jtaf.ewd.properties;

import java.util.List;

import org.apache.commons.lang.StringUtils;

public class MissingGUIPropertyException extends RuntimeException {

	private static final long serialVersionUID = 6833953651082027353L;

    public MissingGUIPropertyException(String property, String guiPropFileName) {
        super("The property, " + property + ", was not found in GUIProperties file: " + guiPropFileName);
    }

    public MissingGUIPropertyException(List properties, List guiPropFileNames) {
        super("The following properties, '" + StringUtils.join(properties, ",") + 
        		"', were not found in any of the following GUIProperties files: '" + 
        			StringUtils.join(guiPropFileNames, ",") + "'");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy