Files
BloomFeed-RSS/vendor/league/flysystem/src/CorruptedPathDetected.php
T
2026-07-03 16:27:34 +02: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);
}
}