*/namespaceDrupal\edit\Ajax;useDrupal\Core\Ajax\CommandInterface;/** * AJAX command to indicate a field form was attempted to be saved but failed * validation and pass the validation errors. */classFieldFormValidationErrorsCommandextendsBaseCommand{/** * Constructs a FieldFormValidationErrorsCommand object. * * @param string $data * The data to pass on to the client side. */publicfunction__construct($data){parent::__construct('editFieldFormValidationErrors',$data);}}