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

fr.whimtrip.ext.jwhthtmltopojo.exception.HtmlToPojoException Maven / Gradle / Ivy

Go to download

Fully featured highly pluggable and customizable Java html to pojo reflection converter

There is a newer version: 1.0.2
Show newest version
package fr.whimtrip.ext.jwhthtmltopojo.exception;


/**
 *
 * 

Part of project jwht-htmltopojo

* *

* Default HtmlToPojo exception that all other exceptions * of this project extends. It only overrides default * constructors of {@link RuntimeException} with default * implementations so that they can be used easily in extended * exceptions classes. *

* * @author Louis-wht * @since 1.0.0 */ public class HtmlToPojoException extends RuntimeException { public HtmlToPojoException() { } public HtmlToPojoException(String message) { super(message); } public HtmlToPojoException(String message, Throwable cause) { super(message, cause); } public HtmlToPojoException(Throwable cause) { super(cause); } public HtmlToPojoException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { super(message, cause, enableSuppression, writableStackTrace); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy