
org.finra.jtaf.ewd.properties.MissingGUIPropertyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jtaf-extwebdriver Show documentation
Show all versions of jtaf-extwebdriver Show documentation
ExtWebDriver is an enhancement to the WebDriver API, with features such as widget library, session management and extended functions
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