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

fr.whimtrip.ext.jwhtscrapper.exception.ScrapperAlreadyFinishedException Maven / Gradle / Ivy

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