1 | <?php |
||
16 | class MissingArgumentException extends FormzException |
||
17 | { |
||
18 | const ARGUMENT_MISSING = 'The argument "%s" was not found in the request.'; |
||
19 | |||
20 | const CONDITION_CONSTRUCTOR_ARGUMENT_MISSING = 'Error while instantiating the condition "%s" of type "%s": a constructor argument is missing. Given arguments were: "%s".'; |
||
21 | |||
22 | /** |
||
23 | * @code 1490179179 |
||
24 | * |
||
25 | * @return self |
||
26 | */ |
||
27 | final public static function ajaxControllerNameArgumentNotSet() |
||
37 | |||
38 | /** |
||
39 | * @code 1490179250 |
||
40 | * |
||
41 | * @return self |
||
42 | */ |
||
43 | final public static function ajaxControllerClassNameArgumentNotSet() |
||
53 | |||
54 | /** |
||
55 | * @code 1494850270 |
||
56 | * |
||
57 | * @param string $conditionName |
||
58 | * @param string $conditionClassName |
||
59 | * @param array $arguments |
||
60 | * @return self |
||
61 | */ |
||
62 | final public static function conditionConstructorArgumentMissing($conditionName, $conditionClassName, array $arguments) |
||
72 | } |
||
73 |