| Total Complexity | 3 | 
| Total Lines | 25 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 13 | final class NotFoundException extends Exception implements NotFoundExceptionInterface | ||
| 14 | { | ||
| 15 | private string $id; | ||
| 16 | |||
| 17 | /** | ||
| 18 | * @param string $id ID of the definition or name of the class that was not found. | ||
| 19 | * @param array $buildStack Stack of IDs of services requested definition or class that was not found. | ||
| 20 | */ | ||
| 21 | public function __construct(string $id, array $buildStack = []) | ||
| 33 | } | ||
| 34 | |||
| 35 | public function getId(): string | ||
| 40 |