com.pega.uiframework.exception.CapabilityNotPresentException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pega-ui-testframework Show documentation
Show all versions of pega-ui-testframework Show documentation
Selenium/WebDriver Automation Framework
The newest version!
package com.pega.uiframework.exception;
/**
* Created by mekak2 on 3/29/17.
*/
/**
* Throw this exception when the matching capability is not found.
*/
public class CapabilityNotPresentException extends Exception
{
private static final long serialVersionUID = 1L;
public CapabilityNotPresentException()
{
}
public CapabilityNotPresentException(final String message)
{
super(message);
}
public CapabilityNotPresentException(final String message, final Throwable cause)
{
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy