pelican-panel-mirror/app/Exceptions/Service/Database/DatabaseClientFeatureNotEnabledException.php
2024-03-12 22:39:16 -04:00

14 lines
294 B
PHP

<?php
namespace App\Exceptions\Service\Database;
use App\Exceptions\PanelException;
class DatabaseClientFeatureNotEnabledException extends PanelException
{
public function __construct()
{
parent::__construct('Client database creation is not enabled in this Panel.');
}
}