public FormAjaxException::__construct(array $form, FormStateInterface $form_state, $message = "", $code = 0, \Exception $previous = NULL)
Constructs a FormAjaxException object.
array $form: The form definition.
\Drupal\Core\Form\FormStateInterface $form_state: The form state.
string $message: (optional) The exception message.
int $code: (optional) A user defined exception code.
\Exception $previous: (optional) The previous exception for nested exceptions.
public function __construct(array $form, FormStateInterface $form_state, $message = "", $code = 0, \Exception $previous = NULL) { parent::__construct($message, $code, $previous); $this->form = $form; $this->formState = $form_state; }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Form!FormAjaxException.php/function/FormAjaxException::__construct/8.1.x