6 lines
No EOL
297 B
PHP
6 lines
No EOL
297 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 ) ) );
|
|
}
|
|
} |