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

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);
    }

    public ScreenshotException(final String message) {
        super(message);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy