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

com.crawljax.plugins.crawloverview.CrawlOverviewException Maven / Gradle / Ivy

There is a newer version: 5.2.3
Show newest version
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