1 | <?php |
||
18 | class PropertyNotAccessibleException extends FormzException |
||
19 | { |
||
20 | const FIELD_NOT_ACCESSIBLE_IN_FORM = 'The form "%s" does not have an accessible property "%s". Please be sure this property exists, and it has a proper getter to access its value.'; |
||
21 | |||
22 | /** |
||
23 | * @code 1465243619 |
||
24 | * |
||
25 | * @param FormObject $formObject |
||
26 | * @param string $fieldName |
||
27 | * @return PropertyNotAccessibleException |
||
28 | */ |
||
29 | final public static function fieldViewHelperFieldNotAccessibleInForm(FormObject $formObject, $fieldName) |
||
39 | } |
||
40 |