Files
bendtstudio0-static/pancake/system/vendor/league/flysystem/src/UnreadableFileException.php
2025-11-26 13:22:58 -05:00

19 lines
345 B
PHP
Executable File

<?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()
)
);
}
}