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

13 lines
249 B
PHP

<?php
declare(strict_types=1);
namespace openvk\Web\Util\Shell\Exceptions;
class ShellUnavailableException extends \Exception
{
public function __construct()
{
parent::__construct("Shell access is not permitted.", 23000);
}
}