ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
UnreadableFileException.php
Go to the documentation of this file.
1<?php
2
3namespace League\Flysystem;
4
5use SplFileInfo;
6
8{
9 public static function forFileInfo(SplFileInfo $fileInfo)
10 {
11 return new static(
12 sprintf(
13 'Unreadable file encountered: %s',
14 $fileInfo->getRealPath()
15 )
16 );
17 }
18}
An exception for terminatinating execution or to throw for unit testing.