![JAR search and dependency download from the Maven repository](/logo.png)
fr.whimtrip.ext.jwhtscrapper.exception.ScrapperAlreadyFinishedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of whimtrip-ext-scrapper Show documentation
Show all versions of whimtrip-ext-scrapper Show documentation
Fully featured highly pluggable and customizable Java scrapping framework
The newest version!
package fr.whimtrip.ext.jwhtscrapper.exception;
import org.jetbrains.annotations.NotNull;
/**
* Part of project jwht-scrapper
* Created on 07/08/18
*
*
* Thrown when scrapper client has already finish processing
* its tasks and a runtime-only method is being used on the
* scrapper client instance.
*
*
* @author Louis-wht
* @since 1.0.0
*/
public class ScrapperAlreadyFinishedException extends ScrapperException {
public ScrapperAlreadyFinishedException(@NotNull final String scrapperName) {
super(String.format("Scrapper %s is already finished, no other operations can be performed on it!", scrapperName));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy