Files
apimacro/vendor/league/flysystem/src/CorruptedPathDetected.php

18 lines
356 B
PHP
Raw Normal View History

2024-05-07 12:17:25 +02:00
<?php
namespace League\Flysystem;
use LogicException;
class CorruptedPathDetected extends LogicException implements FilesystemException
{
/**
* @param string $path
* @return CorruptedPathDetected
*/
public static function forPath($path)
{
return new CorruptedPathDetected("Corrupted path detected: " . $path);
}
}