vendor/symfony/filesystem/Exception/FileNotFoundException.php line 20

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\Filesystem\Exception;
  11. /**
  12.  * Exception class thrown when a file couldn't be found.
  13.  *
  14.  * @author Fabien Potencier <fabien@symfony.com>
  15.  * @author Christian Gärtner <christiangaertner.film@googlemail.com>
  16.  */
  17. class FileNotFoundException extends IOException
  18. {
  19.     public function __construct(?string $message nullint $code 0, ?\Throwable $previous null, ?string $path null)
  20.     {
  21.         if (null === $message) {
  22.             if (null === $path) {
  23.                 $message 'File could not be found.';
  24.             } else {
  25.                 $message \sprintf('File "%s" could not be found.'$path);
  26.             }
  27.         }
  28.         parent::__construct($message$code$previous$path);
  29.     }
  30. }