openvk/Web/Util/Shell/Exceptions/UnknownCommandException.php

11 lines
270 B
PHP
Raw Normal View History

2020-06-07 19:04:43 +03:00
<?php declare(strict_types=1);
namespace openvk\Web\Util\Shell\Exceptions;
class UnknownCommandException extends \Exception
{
function __construct(string $command)
{
parent::__construct("Command $command can't be found on this system.", 23001);
}
}