com.applitools.eyes.EyesException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-common-java3 Show documentation
Show all versions of eyes-common-java3 Show documentation
Common code for Applitools Eyes Java SDK projects
/*
* 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