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

fr.whimtrip.ext.jwhthtmltopojo.exception.ConversionException 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;


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