Files
StocksNew/vendor/league/flysystem/src/CorruptedPathDetected.php
Sampanna Rimal 53c0140f58 first commit
2024-08-27 17:48:06 +05:45

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