Class InvalidPropertyValueException

Object
All Implemented Interfaces:
Serializable

Thrown when an Attribute value or a FeatureAssociation does not met the constraints (other than Java class) specified by its type. This exception can be thrown by implementations that perform validity checks. Such verifications happen typically in the following methods:

Exception for invalid class

Libraries may throw ClassCastException instead of this InvalidPropertyValueException when the given value is not an instance of the expected class (typically AttributeType.getValueClass()). The reason is that libraries may rely on Java parameterized types, which throws ClassCastException at runtime when the objects are used in an unsafe way. Libraries may also rely on Class.cast(Object) or Class.asSubclass(Class) standard methods, which are designed to throw ClassCastException, or may way to be consistent with all the above.
Since:
3.1
See Also: