com.assertthat.selenium_shutterbug.utils.web.UnableTakeSnapshotException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenium-shutterbug Show documentation
Show all versions of selenium-shutterbug Show documentation
Utility library to create customized screenshots using Selenium WebDriver and Java AWT
/*
* Copyright (c) 2016, Glib Briia Glib Briia
* Distributed under the terms of the MIT License
*/
package com.assertthat.selenium_shutterbug.utils.web;
import org.openqa.selenium.WebDriverException;
/**
* Created by Glib_Briia on 17/06/2016.
*/
public class UnableTakeSnapshotException extends WebDriverException {
public UnableTakeSnapshotException() {
super();
}
public UnableTakeSnapshotException(String message) {
super(message);
}
public UnableTakeSnapshotException(Throwable cause) {
super(cause);
}
public UnableTakeSnapshotException(String message, Throwable cause) {
super(message, cause);
}
}