com.applitools.eyes.EyesDriverOperationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-selenium-java-jersey1_17-sf2_53_1 Show documentation
Show all versions of eyes-selenium-java-jersey1_17-sf2_53_1 Show documentation
Applitools Eyes SDK for Selenium Java WebDriver
The newest version!
package com.applitools.eyes;
/**
* Encapsulates an error when trying to perform an action using WebDriver.
*/
public class EyesDriverOperationException extends EyesException {
/**
* Creates an EyesException instance.
* @param message A description of the error.
*/
public EyesDriverOperationException(String message) {
super(message);
}
/**
* Creates an EyesException instance.
* @param message A description of the error.
* @param e The throwable this exception should wrap.
*/
public EyesDriverOperationException(String message, Throwable e) {
super(message, e);
}
}