| 1 | <?php |
||
| 16 | class MissingArgumentException extends FormzException |
||
| 17 | { |
||
| 18 | const REQUEST_ARGUMENTS_MISSING = 'One or more arguments are missing in the request: "%s".'; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @code 1487673983 |
||
| 22 | * |
||
| 23 | * @param array $missingArguments |
||
| 24 | * @return MissingArgumentException |
||
| 25 | */ |
||
| 26 | final public static function ajaxControllerMissingArguments(array $missingArguments) |
||
| 36 | } |
||
| 37 |