class ClassNotFoundException
Same name in this branch
- 11.1.x vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassNotFoundException.php \Prophecy\Exception\Doubler\ClassNotFoundException
Hierarchy
- class \Symfony\Component\VarExporter\Exception\ClassNotFoundException extends \Symfony\Component\VarExporter\Exception\Exception implements \Symfony\Component\VarExporter\Exception\ExceptionInterface
Expanded class hierarchy of ClassNotFoundException
2 files declare their use of ClassNotFoundException
- Hydrator.php in vendor/
symfony/ var-exporter/ Internal/ Hydrator.php - Registry.php in vendor/
symfony/ var-exporter/ Internal/ Registry.php
File
-
vendor/
symfony/ var-exporter/ Exception/ ClassNotFoundException.php, line 14
Namespace
Symfony\Component\VarExporter\ExceptionView source
class ClassNotFoundException extends \Exception implements ExceptionInterface {
public function __construct(string $class, ?\Throwable $previous = null) {
parent::__construct(\sprintf('Class "%s" not found.', $class), 0, $previous);
}
}