![JAR search and dependency download from the Maven repository](/logo.png)
fr.whimtrip.ext.jwhtscrapper.exception.ScrapperUnsupportedException 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 fr.whimtrip.ext.jwhtscrapper.service.base.HttpManagerClient;
/**
* Part of project jwht-scrapper
* Created on 29/07/18
*
*
* If a class implemented from a jwht-scrapper interface does
* not support a feature. Yet it will only be accepted on
* {@link HttpManagerClient#getHttpMetrics()} and other subsequent
* methods using this method under the hood.
*
*
* @author Louis-wht
* @since 1.0.0
*/
public class ScrapperUnsupportedException extends ScrapperException {
public ScrapperUnsupportedException(String methodName, Class nonSupportingOperationClass) {
super(String.format("%s method is not supported by %s.", methodName, nonSupportingOperationClass));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy