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

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

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