Files
panel/app/Exceptions/Service/Database/DatabaseClientFeatureNotEnabledException.php

14 lines
294 B
PHP
Raw Normal View History

<?php
2024-03-12 22:39:16 -04:00
namespace App\Exceptions\Service\Database;
2024-03-12 22:39:16 -04:00
use App\Exceptions\PanelException;
2024-03-12 22:39:16 -04:00
class DatabaseClientFeatureNotEnabledException extends PanelException
{
public function __construct()
{
parent::__construct('Client database creation is not enabled in this Panel.');
}
}