Class TLfnCustomPropertyTypeMismatchException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.luciad.fusion.platform.model.properties.ALfnCustomPropertyValueException
com.luciad.fusion.platform.model.properties.TLfnCustomPropertyTypeMismatchException
- All Implemented Interfaces:
Serializable
Thrown when trying to set a value for a custom property which does not match its type configured in the
TLfnCustomPropertyDefinitions
.- Since:
- 2024.1
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionTLfnCustomPropertyTypeMismatchException
(String aPropertyName, String aExpectedType, String aActualType, Object aValue) Creates aTLfnCustomPropertyTypeMismatchException
-
Method Summary
Methods inherited from class com.luciad.fusion.platform.model.properties.ALfnCustomPropertyValueException
getCustomPropertyName, getValue
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
TLfnCustomPropertyTypeMismatchException
public TLfnCustomPropertyTypeMismatchException(String aPropertyName, String aExpectedType, String aActualType, Object aValue) Creates aTLfnCustomPropertyTypeMismatchException
- Parameters:
aPropertyName
- the name of the custom propertyaExpectedType
- the type configured for the custom propertyaPropertyName
in theTLfnCustomPropertyDefinitions
aActualType
- the actual type of the value being setaValue
- the value being set
-