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

net.optionfactory.hj.JsonDriverNotFound Maven / Gradle / Ivy

Go to download

Custom Hibernate types for serializing fields as JSON, using either jackson or gson

There is a newer version: 6.7
Show newest version
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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy