Files
panel/app/Exceptions/Service/Allocation/AutoAllocationNotEnabledException.php

19 lines
387 B
PHP
Raw Normal View History

<?php
2024-03-12 22:39:16 -04:00
namespace App\Exceptions\Service\Allocation;
2024-03-12 22:39:16 -04:00
use App\Exceptions\DisplayException;
class AutoAllocationNotEnabledException extends DisplayException
{
/**
* AutoAllocationNotEnabledException constructor.
*/
public function __construct()
{
parent::__construct(
'Server auto-allocation is not enabled for this instance.'
);
}
}