fr.whimtrip.ext.jwhthtmltopojo.exception.ConversionException 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;
import fr.whimtrip.ext.jwhthtmltopojo.HtmlToPojoEngine;
import fr.whimtrip.ext.jwhthtmltopojo.intrf.HtmlDeserializer;
import fr.whimtrip.ext.jwhthtmltopojo.intrf.HtmlField;
import org.jsoup.nodes.Element;
/**
*
* Part of project jwht-htmltopojo
*
*
* Thrown by {@link HtmlField#getRawValue(HtmlToPojoEngine, Element, Object)}
* when an {@link HtmlDeserializer} fails to operate properly pre or post
* conversion operations. This exception class features all common
* {@link RuntimeException} constructors because it is meant to be overrided
* with more specific Exceptions types depending on the use case.
*
*
* @author Louis-wht
* @since 1.0.0
*/
public class ConversionException extends HtmlToPojoException {
public ConversionException() {
}
public ConversionException(String message) {
super(message);
}
public ConversionException(String message, Throwable cause) {
super(message, cause);
}
public ConversionException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy