mirror of
https://github.com/php/pie.git
synced 2026-03-24 07:22:17 +01:00
16 lines
258 B
PHP
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');
|
|
}
|
|
}
|