<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\VarExporter\Exception; class NotInstantiableTypeException extends \Exception implements ExceptionInterface { public function __construct(string $type) { parent::__construct(sprintf('Type "%s" is not instantiable.', $type)); } }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
ClassNotFoundException.php | File | 545 B | 0644 |
|
ExceptionInterface.php | File | 342 B | 0644 |
|
NotInstantiableTypeException.php | File | 515 B | 0644 |
|