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

11 lines
240 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 ShellUnavailableException extends \Exception
{
function __construct()
{
parent::__construct("Shell access is not permitted.", 23000);
}
}