net.optionfactory.hj.JsonMappingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-json Show documentation
Show all versions of hibernate-json Show documentation
Custom Hibernate types for serializing fields as JSON, using either jackson or gson
package net.optionfactory.hj;
/**
*
* @author rferranti
*/
public class JsonMappingException extends IllegalStateException {
public JsonMappingException(Throwable cause) {
super(cause);
}
}