com.applitools.eyes.OutOfBoundsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-common-java Show documentation
Show all versions of eyes-common-java Show documentation
Common code for Applitools Eyes Java SDK projects
/*
* Applitools software.
*/
package com.applitools.eyes;
/**
* Applitools Eyes exception indicating the a geometrical element is out of
* bounds (point outside a region, region outside another region etc.)
*/
@SuppressWarnings("UnusedDeclaration")
public class OutOfBoundsException extends EyesException {
public OutOfBoundsException(String message) {
super(message);
}
public OutOfBoundsException(String message, Throwable e) {
super(message, e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy