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

com.gitee.jmash.propertyset.IllegalPropertyException Maven / Gradle / Ivy

The newest version!

package com.gitee.jmash.propertyset;


/**
 * Thrown if a property is set which is not allowed.
 *
 * 

e.g. non-serializable Object is passed to SerializablePropertySet, * or field is persisted that cannot be stored in database.

* * @author Joe Walnes * @version $Revision: 146 $ */ @SuppressWarnings("serial") public class IllegalPropertyException extends PropertyException { //~ Constructors /////////////////////////////////////////////////////////// public IllegalPropertyException() { super(); } public IllegalPropertyException(String msg) { super(msg); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy