Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/app/Exceptions/Service/Database/TooManyDatabasesException.php
10284 views
1
<?php
2
3
namespace Pterodactyl\Exceptions\Service\Database;
4
5
use Pterodactyl\Exceptions\DisplayException;
6
7
class TooManyDatabasesException extends DisplayException
8
{
9
public function __construct()
10
{
11
parent::__construct('Operation aborted: creating a new database would put this server over the defined limit.');
12
}
13
}
14
15