MediaWiki REL1_34
HTMLFormFieldRequiredOptionsException.php
Go to the documentation of this file.
1<?php
2
4 public function __construct( HTMLFormField $field, array $missing ) {
5 parent::__construct( sprintf( "Form type `%s` expected the following parameters to be set: %s",
6 get_class( $field ),
7 implode( ', ', $missing ) ) );
8 }
9}
The parent class to generate form fields.
MediaWiki exception.