9 lines
305 B
PHP
9 lines
305 B
PHP
<?php
|
|
|
|
class HTMLFormFieldRequiredOptionsException extends MWException {
|
|
public function __construct( HTMLFormField $field, array $missing ) {
|
|
parent::__construct( sprintf( "Form type `%s` expected the following parameters to be set: %s",
|
|
get_class( $field ),
|
|
implode( ', ', $missing ) ) );
|
|
}
|
|
}
|