1 | <?php |
||
16 | class InvalidConfigurationException extends FormzException |
||
17 | { |
||
18 | const INVALID_FORM_CONFIGURATION = 'The form configuration contains errors.'; |
||
19 | |||
20 | const AJAX_VALIDATION_NOT_ACTIVATED = 'The validation "%s" of the field "%s" is not configured to work with Ajax. Please add the option `useAjax`.'; |
||
21 | |||
22 | /** |
||
23 | * @code 1487671395 |
||
24 | * |
||
25 | * @return InvalidConfigurationException |
||
26 | */ |
||
27 | final public static function ajaxControllerInvalidFormConfiguration() |
||
34 | |||
35 | /** |
||
36 | * @code 1487673434 |
||
37 | * |
||
38 | * @param string $validationName |
||
39 | * @param string $fieldName |
||
40 | * @return InvalidConfigurationException |
||
41 | */ |
||
42 | final public static function ajaxControllerAjaxValidationNotActivated($validationName, $fieldName) |
||
52 | } |
||
53 |