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

org.fluentlenium.core.ScreenshotNotCreatedException Maven / Gradle / Ivy

package org.fluentlenium.core;

import java.io.IOException;

/**
 * Exception type to be thrown when a screenshot taking process couldn't finish.
 */
public class ScreenshotNotCreatedException extends RuntimeException {

    public ScreenshotNotCreatedException(String errorMessage, IOException e) {
        super(errorMessage, e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy