com.applitools.eyes.NewTestException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-sdk-java-jersey1_17-sf2_51_0 Show documentation
Show all versions of eyes-sdk-java-jersey1_17-sf2_51_0 Show documentation
Applitools Eyes SDK base for Java
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