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

14 lines
317 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\DisplayException;
class TooManyDatabasesException extends DisplayException
{
public function __construct()
{
parent::__construct('Operation aborted: creating a new database would put this server over the defined limit.');
}
}