com.applitools.eyes.playwright.universal.PlaywrightStaleElementReferenceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-playwright-java5 Show documentation
Show all versions of eyes-playwright-java5 Show documentation
Applitools Eyes SDK for Playwright Java
package com.applitools.eyes.playwright.universal;
import com.applitools.eyes.exceptions.StaleElementReferenceException;
public class PlaywrightStaleElementReferenceException extends StaleElementReferenceException {
@Override
public void throwException(String message) {
throw new RuntimeException(message);
}
}