19 lines
403 B
PHP
19 lines
403 B
PHP
|
<?php
|
||
|
|
||
|
namespace Pterodactyl\Exceptions\Service\Allocation;
|
||
|
|
||
|
use Pterodactyl\Exceptions\DisplayException;
|
||
|
|
||
|
class AutoAllocationNotEnabledException extends DisplayException
|
||
|
{
|
||
|
/**
|
||
|
* AutoAllocationNotEnabledException constructor.
|
||
|
*/
|
||
|
public function __construct()
|
||
|
{
|
||
|
parent::__construct(
|
||
|
'Server auto-allocation is not enabled for this instance.'
|
||
|
);
|
||
|
}
|
||
|
}
|