1 | <?php |
||
12 | class MultipleProcessorsException extends Exception |
||
13 | { |
||
14 | /** |
||
15 | * Command class. |
||
16 | * |
||
17 | * @var string |
||
18 | */ |
||
19 | private $commandClassName; |
||
20 | |||
21 | /** |
||
22 | * Class constructor. |
||
23 | * |
||
24 | * @param string $commandClassName |
||
25 | * @param Exception $previous |
||
26 | */ |
||
27 | 1 | public function __construct($commandClassName, Exception $previous = null) |
|
32 | |||
33 | /** |
||
34 | * Get command class name. |
||
35 | * |
||
36 | * @return string |
||
37 | */ |
||
38 | 1 | public function getCommandClassName() |
|
42 | } |
||
43 |