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

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

There is a newer version: 5.0.0
Show newest version
/*
 * Applitools SDK for Selenium integration.
 */
package com.applitools.eyes;

/**
 * Applitools Eyes Exception.
 */
public class EyesException extends RuntimeException {

    /**
     * Creates an EyesException instance.
     * @param message A description of the error.
     */
    public EyesException(String message) {
        super(message);
    }

    /**
     * Creates an EyesException instance.
     * @param message A description of the error.
     * @param e The throwable this exception should wrap.
     */
    public EyesException(String message, Throwable e) {
        super(message, e);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy