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

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

There is a newer version: 2.51
Show newest version
package com.applitools.eyes;

/**
 * Indicates that a new test (i.e., a test for which no baseline exists) ended.
 */
public class NewTestException extends TestFailedException {

    /**
     * Creates a new NewTestException instance.
     * @param results The test results if available, {@code null} otherwise.
     * @param message A description string.
     */
    public NewTestException(TestResults results, String message) {
        super(results, message);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy