blob: 76f5286633228187083ae2eae35164d30d0d390b (
plain)
1
2
3
4
5
6
7
8
9
|
<?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 ) ) );
}
}
|