![JAR search and dependency download from the Maven repository](/logo.png)
fr.whimtrip.ext.jwhtscrapper.exception.ScrapperException 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;
/**
*
* Part of project jwht-scrapper
* Created on 26/07/18
*
*
* Default Scrapper Exception all exception classes of this project
* will extend. It can also be used as a standalone altough creating
* your own extending exception class is recommended if necessary.
*
*
* @author Louis-wht
* @since 1.0.0
*/
public class ScrapperException extends RuntimeException {
public ScrapperException() {
super();
}
public ScrapperException(String message) {
super(message);
}
public ScrapperException(String message, Throwable cause) {
super(message, cause);
}
public ScrapperException(Throwable cause) {
super(cause);
}
protected ScrapperException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy