7
0
mirror of https://github.com/pelican-dev/panel.git synced 2025-06-08 00:38:59 +02:00
2024-03-12 22:39:16 -04:00

14 lines
317 B
PHP

<?php
namespace App\Exceptions\Service\Database;
use App\Exceptions\DisplayException;
class TooManyDatabasesException extends DisplayException
{
public function __construct()
{
parent::__construct('Operation aborted: creating a new database would put this server over the defined limit.');
}
}