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

org.hildan.fxgson.adapters.properties.NullPropertyException Maven / Gradle / Ivy

package org.hildan.fxgson.adapters.properties;

/**
 * Thrown when a null property is being serialized, and the adapter was not configured to accept null values.
 */
public class NullPropertyException extends RuntimeException {

    /**
     * Constructs a new NullPropertyException.
     */
    public NullPropertyException() {
        super("Null properties are forbidden");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy