Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/app/Exceptions/Service/Database/DatabaseClientFeatureNotEnabledException.php
10284 views
1
<?php
2
3
namespace Pterodactyl\Exceptions\Service\Database;
4
5
use Pterodactyl\Exceptions\PterodactylException;
6
7
class DatabaseClientFeatureNotEnabledException extends PterodactylException
8
{
9
public function __construct()
10
{
11
parent::__construct('Client database creation is not enabled in this Panel.');
12
}
13
}
14
15