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