Make mediawiki.special.pageLanguage work again
[lhc/web/wiklou.git] / includes / htmlform / HTMLFormFieldRequiredOptionsException.php
1 <?php
2
3 class HTMLFormFieldRequiredOptionsException extends MWException {
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 }