1 | <?php |
||
19 | class ToolbarManagerException extends Exception |
||
20 | { |
||
21 | /** |
||
22 | * Gets the "ITEM DOES NOT EXIST" exception. |
||
23 | * |
||
24 | * @param string $name The invalid CKEditor item name. |
||
25 | * |
||
26 | * @return \Ivory\CKEditorBundle\Exception\ToolbarManagerException The "ITEM DOES NOT EXIST" exception. |
||
27 | */ |
||
28 | public static function itemDoesNotExist($name) |
||
32 | |||
33 | /** |
||
34 | * Gets the "TOOLBAR DOES NOT EXIST" exception. |
||
35 | * |
||
36 | * @param string $name The invalid CKEditor toolbar name. |
||
37 | * |
||
38 | * @return \Ivory\CKEditorBundle\Exception\ToolbarManagerException The "TOOLBAR DOES NOT EXIST" exception. |
||
39 | */ |
||
40 | public static function toolbarDoesNotExist($name) |
||
44 | } |
||
45 |