
com.crawljax.plugins.crawloverview.CrawlOverviewException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of crawloverview-plugin Show documentation
Show all versions of crawloverview-plugin Show documentation
Generates an HTML report with a snapshot overview of what is crawled.
package com.crawljax.plugins.crawloverview;
import com.crawljax.core.CrawljaxException;
/**
* Gets thrown when something unexpected goes wrong inside the {@link CrawlOverview} plugin.
*/
@SuppressWarnings("serial")
public class CrawlOverviewException extends CrawljaxException {
public CrawlOverviewException(String message, Throwable cause) {
super(message, cause);
}
public CrawlOverviewException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy