Constructor.
Parameters
string $path The path to the file that was not found:
File
- drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/File/Exception/FileNotFoundException.php, line 26
Class
- FileNotFoundException
- Thrown when a file was not found
Namespace
Symfony\Component\HttpFoundation\File\Exception
Code
public function __construct($path) {
parent::__construct(sprintf('The file "%s" does not exist', $path));
}