App\Exceptions\FileNotFoundException::__construct PHP Method

__construct() public method

Constructor.
public __construct ( string $path, integer $code, App\Exceptions\Exception $previous = null )
$path string
$code integer
$previous App\Exceptions\Exception
    public function __construct($path, $code = 0, \Exception $previous = null)
    {
        $this->path = $path;
        parent::__construct('File not found: ' . $this->getPath(), $code, $previous);
    }
FileNotFoundException