1 | <?php |
||
12 | final class DiscoveryFailedException extends \Exception implements Exception |
||
13 | { |
||
14 | /** |
||
15 | * @var \Exception[] |
||
16 | */ |
||
17 | private $exceptions; |
||
18 | |||
19 | /** |
||
20 | * @param string $message |
||
21 | * @param \Exception[] $exceptions |
||
22 | */ |
||
23 | 6 | public function __construct($message, array $exceptions = []) |
|
29 | |||
30 | /** |
||
31 | * @param \Exception[] $exceptions |
||
32 | */ |
||
33 | 6 | public static function create($exceptions) |
|
43 | |||
44 | /** |
||
45 | * @return \Exception[] |
||
46 | */ |
||
47 | public function getExceptions() |
||
51 | } |
||
52 |