net.optionfactory.hj.JsonDriverNotFound 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 JsonDriverNotFound extends IllegalStateException {
public static void failIf(boolean fail, String msg) {
if (fail) {
throw new JsonDriverNotFound(msg);
}
}
public JsonDriverNotFound(String s) {
super(s);
}
}