1 | <?php |
||
19 | class UseCaseNotFoundException extends Exception |
||
20 | { |
||
21 | /** |
||
22 | * |
||
23 | * @var CommandInterface |
||
24 | */ |
||
25 | protected $command; |
||
26 | |||
27 | /** |
||
28 | * |
||
29 | * @param CommandInterface $command |
||
30 | */ |
||
31 | public function __construct(CommandInterface $command) |
||
35 | |||
36 | /** |
||
37 | * |
||
38 | * @return CommandInterface |
||
39 | */ |
||
40 | public function getCommand() |
||
44 | } |
||
45 |