net.thucydides.core.screenshots.ScreenshotException Maven / Gradle / Ivy
package net.thucydides.core.screenshots;
/**
* The screenshot could not be taken for some reason.
*/
public class ScreenshotException extends RuntimeException {
private static final long serialVersionUID = 1L;
public ScreenshotException(final String message, final Throwable e) {
super(message,e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy