![JAR search and dependency download from the Maven repository](/logo.png)
fr.whimtrip.ext.jwhtscrapper.exception.NullLinkException 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 java.lang.reflect.Field;
/**
* Part of project jwht-scrapper
* Created on 29/07/18
*
*
* Thrown when the url specified by a link from annotation
* configuration output a null / empty value.
*
*
* @author Louis-wht
* @since 1.0.0
*/
public class NullLinkException extends LinkException {
public NullLinkException(Field field) {
super(
String.format(
"Field %s link cannot be followed because the link has a null value.",
field
)
);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy