net.nemerosa.ontrack.acceptance.browser.CannotTakeScreenshotException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontrack-acceptance Show documentation
Show all versions of ontrack-acceptance Show documentation
Ontrack module: ontrack-acceptance
The newest version!
package net.nemerosa.ontrack.acceptance.browser;
import net.nemerosa.ontrack.common.BaseException;
import java.io.IOException;
public class CannotTakeScreenshotException extends BaseException {
public CannotTakeScreenshotException(String name, IOException e) {
super(
String.format(
"Cannot take %s screenshot",
name
),
e
);
}
}