Files
zibo-dashboard/vendor/league/flysystem/src/CorruptedPathDetected.php
T
2025-03-28 08:52:46 +01:00

14 lines
316 B
PHP

<?php
namespace League\Flysystem;
use RuntimeException;
final class CorruptedPathDetected extends RuntimeException implements FilesystemException
{
public static function forPath(string $path): CorruptedPathDetected
{
return new CorruptedPathDetected("Corrupted path detected: " . $path);
}
}