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-sdk-core-java5 Show documentation
Show all versions of eyes-sdk-core-java5 Show documentation
Applitools Eyes SDK base for Java
/*
* 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);
}
}