use of com.haulmont.cuba.gui.components.RequiredValueMissingException in project cuba by cuba-platform.
the class DesktopDateField method validate.
@Override
public void validate() throws ValidationException {
if (!isVisible() || !isEditableWithParent() || !isEnabled())
return;
try {
constructDate();
super.validate();
} catch (RequiredValueMissingException e) {
throw e;
} catch (Exception e) {
throw new ValidationException(e);
}
}
Aggregations