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