1 | <?php |
||
16 | class ClassNotFoundException extends FormzException |
||
17 | { |
||
18 | const WRONG_ASSET_HANDLER_CLASS_NAME = 'Trying to get an asset handler with a wrong class name: "%s".'; |
||
19 | |||
20 | const WRONG_FORM_CLASS_NAME = 'Invalid form class name given: "%s".'; |
||
21 | |||
22 | const FORM_VIEW_HELPER_CLASS_NOT_FOUND = 'Invalid value for the form class name (current value: "%s"). You need to either fill the parameter `formClassName` in the view helper, or specify the type of the parameter `$%s` for the method "%s::%s()".'; |
||
23 | |||
24 | /** |
||
25 | * @code 1477468381 |
||
26 | * |
||
27 | * @param string $className |
||
28 | * @return self |
||
29 | */ |
||
30 | final public static function wrongAssetHandlerClassName($className) |
||
40 | |||
41 | /** |
||
42 | * @code 1467191011 |
||
43 | * |
||
44 | * @param string $className |
||
45 | * @return self |
||
46 | */ |
||
47 | final public static function wrongFormClassName($className) |
||
57 | |||
58 | /** |
||
59 | * @code 1457442014 |
||
60 | * |
||
61 | * @param string $formClassName |
||
62 | * @param string $formName |
||
63 | * @param string $controller |
||
64 | * @param string $action |
||
65 | * @return ClassNotFoundException |
||
66 | */ |
||
67 | final public static function formViewHelperClassNotFound($formClassName, $formName, $controller, $action) |
||
77 | } |
||
78 |