1 | <?php |
||
8 | class RequirePackageException extends RuntimeException implements NotFoundExceptionInterface, NotFoundException |
||
9 | { |
||
10 | /** @var string */ |
||
11 | protected $class; |
||
12 | |||
13 | /** @var string */ |
||
14 | protected $package; |
||
15 | |||
16 | /** |
||
17 | * @param string $class |
||
18 | * @param string $package |
||
19 | */ |
||
20 | public function __construct($class, $package) |
||
30 | |||
31 | /** |
||
32 | * @return string |
||
33 | */ |
||
34 | public function getClass() |
||
38 | |||
39 | /** |
||
40 | * @return string |
||
41 | */ |
||
42 | public function getPackage() |
||
46 | } |
||
47 |