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

com.applitools.eyes.EyesDriverOperationException Maven / Gradle / Ivy

There is a newer version: 2.34
Show 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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy