mirror of
https://github.com/openvk/openvk
synced 2024-11-11 09:29:29 +03:00
10 lines
240 B
PHP
10 lines
240 B
PHP
<?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);
|
|
}
|
|
}
|