Feature Form Validation Exception
A FieldFormElement value can be invalid in the ways represented by this type's subclasses. These types are returned from methods which validate the value of FieldFormElement.value.
Since
200.4.0
See also
Inheritors
Types
The value cannot be meaningfully coerced to the field type of the field in the table with the name FieldFormElement.fieldName.
A DateTime value is less than the value specified by DateTimePickerFormInput.min.
The value is greater than the length specified by TextBoxFormInput.maxLength or TextAreaFormInput.maxLength.
A DateTime value is greater than the value specified by DateTimePickerFormInput.max.
A numeric value is greater than the range specified by FieldFormElement.domain. This error can occur when the domain is a com.arcgismaps.data.RangeDomain, the FieldFormElement.input is a TextBoxFormInput, and the field in the backing table with the name FieldFormElement.fieldName has a numeric field type.
The value's length is less than the length specified by TextBoxFormInput.minLength or TextAreaFormInput.minLength.
A numeric value is below the range specified by FieldFormElement.domain. This error can occur when the domain is a com.arcgismaps.data.RangeDomain, the FieldFormElement.input is a TextBoxFormInput, and the field in the backing table with the name FieldFormElement.fieldName has a numeric field type.
This error occurs when attempting to update the value of a FieldFormElement with a non-nullable field to null.
The value is not found in the FieldFormElement.domain. This error can occur when the FieldFormElement.domain is a com.arcgismaps.data.CodedValueDomain, and the FieldFormElement.input is a RadioButtonsFormInput, ComboBoxFormInput, or SwitchFormInput.
The value is null or empty and the value of FieldFormElement.isRequired is true
.
An unknown type of validation error was returned from validating a FieldFormElement.value. Inspect the underlying message for more information.
Inherited properties
additional information about the error
an integer error code providing more specific details of the error, see guide doc for error codes.