dd/vendor/league/flysystem/src/CorruptedPathDetected.php
hellcat 5f37124e8e 1
2025-05-07 18:25:24 +08:00

14 lines
316 B
PHP
Executable File

<?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);
}
}