1 | <?php |
||
8 | class GeneralCategoryNotFoundException extends Exception |
||
9 | { |
||
10 | /** |
||
11 | * @var GeneralCategory |
||
12 | */ |
||
13 | protected $category; |
||
14 | |||
15 | /** |
||
16 | * @return GeneralCategory |
||
17 | */ |
||
18 | public function getCategory() |
||
22 | |||
23 | /** |
||
24 | * @param GeneralCategory $category |
||
25 | * @return self |
||
26 | */ |
||
27 | public static function withCategory(GeneralCategory $category) |
||
34 | } |