mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-01-13 15:21:14 +01:00
38 lines
804 B
PHP
38 lines
804 B
PHP
|
<?php
|
||
|
|
||
|
namespace League\Flysystem;
|
||
|
|
||
|
use RuntimeException;
|
||
|
use SplFileInfo;
|
||
|
|
||
|
class NotSupportedException extends RuntimeException implements FilesystemException
|
||
|
{
|
||
|
/**
|
||
|
* Create a new exception for a link.
|
||
|
*
|
||
|
* @param SplFileInfo $file
|
||
|
*
|
||
|
* @return static
|
||
|
*/
|
||
|
public static function forLink(SplFileInfo $file)
|
||
|
{
|
||
|
$message = 'Links are not supported, encountered link at ';
|
||
|
|
||
|
return new static($message . $file->getPathname());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Create a new exception for a link.
|
||
|
*
|
||
|
* @param string $systemType
|
||
|
*
|
||
|
* @return static
|
||
|
*/
|
||
|
public static function forFtpSystemType($systemType)
|
||
|
{
|
||
|
$message = "The FTP system type '$systemType' is currently not supported.";
|
||
|
|
||
|
return new static($message);
|
||
|
}
|
||
|
}
|