Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/app/Exceptions/Service/Allocation/AutoAllocationNotEnabledException.php
10280 views
1
<?php
2
3
namespace Pterodactyl\Exceptions\Service\Allocation;
4
5
use Pterodactyl\Exceptions\DisplayException;
6
7
class AutoAllocationNotEnabledException extends DisplayException
8
{
9
/**
10
* AutoAllocationNotEnabledException constructor.
11
*/
12
public function __construct()
13
{
14
parent::__construct(
15
'Server auto-allocation is not enabled for this instance.'
16
);
17
}
18
}
19
20