fr.whimtrip.ext.jwhthtmltopojo.exception.HtmlToPojoException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of whimtrip-ext-htmltopojo Show documentation
Show all versions of whimtrip-ext-htmltopojo Show documentation
Fully featured highly pluggable and customizable Java html to pojo reflection converter
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