# worker/4.9.25/src/Symfony/Filesystem/Exception/FileNotFoundException.php

ManageWP Worker, version 4.9.25. 18 lines.

- Page: https://pluginprobe.com/plugins/worker/4.9.25/code/src/Symfony/Filesystem/Exception/FileNotFoundException.php
- Raw: https://pluginprobe.com/plugins/worker/4.9.25/raw/src/Symfony/Filesystem/Exception/FileNotFoundException.php
- Modified: 2014-06-27T15:56:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/worker/4.9.25/code/src/Symfony/Filesystem/Exception/FileNotFoundException.php#L10-L20`.

```php
<?php

class Symfony_Filesystem_Exception_FileNotFoundException extends Symfony_Filesystem_Exception_IOException
{
    public function __construct($message = null, $code = 0, Exception $previous = null, $path = null)
    {
        if (null === $message) {
            if (null === $path) {
                $message = 'File could not be found.';
            } else {
                $message = sprintf('File "%s" could not be found.', $path);
            }
        }

        parent::__construct($message, $code, $previous, $path);
    }
}

```
