1
0
mirror of https://github.com/php/pie.git synced 2026-03-24 07:22:17 +01:00
Files
archived-pie/src/File/SudoNotFoundOnSystem.php
2025-02-28 07:20:57 +00:00

16 lines
258 B
PHP

<?php
declare(strict_types=1);
namespace Php\Pie\File;
use RuntimeException;
class SudoNotFoundOnSystem extends RuntimeException
{
public static function new(): self
{
return new self('sudo command was not found on this system');
}
}