ContainerNotFoundException.php 387 B

123456789101112131415
  1. <?php
  2. declare(strict_types=1);
  3. namespace Yansongda\Artful\Exception;
  4. use Throwable;
  5. class ContainerNotFoundException extends ContainerException
  6. {
  7. public function __construct(string $message = '容器未找到', int $code = self::CONTAINER_NOT_FOUND, mixed $extra = null, ?Throwable $previous = null)
  8. {
  9. parent::__construct($message, $code, $extra, $previous);
  10. }
  11. }