?iť?

Your IP : 3.139.97.161


Current Path : /home/scgforma/www/cloud/3rdparty/league/flysystem/src/
Upload File :
Current File : /home/scgforma/www/cloud/3rdparty/league/flysystem/src/UnreadableFileException.php

<?php

namespace League\Flysystem;

use SplFileInfo;

class UnreadableFileException extends Exception
{
    public static function forFileInfo(SplFileInfo $fileInfo)
    {
        return new static(
            sprintf(
                'Unreadable file encountered: %s',
                $fileInfo->getRealPath()
            )
        );
    }
}