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

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

The newest version!
/*
 * 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 - 2024 Weber Informatics LLC | Privacy Policy