mirror of
https://github.com/openvk/openvk
synced 2025-04-21 15:43:03 +03:00
13 lines
249 B
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);
|
|
}
|
|
}
|