pelican-panel-mirror/app/Exceptions/Service/Allocation/NoAutoAllocationSpaceAvailableException.php
2024-03-12 22:39:16 -04:00

19 lines
412 B
PHP

<?php
namespace App\Exceptions\Service\Allocation;
use App\Exceptions\DisplayException;
class NoAutoAllocationSpaceAvailableException extends DisplayException
{
/**
* NoAutoAllocationSpaceAvailableException constructor.
*/
public function __construct()
{
parent::__construct(
'Cannot assign additional allocation: no more space available on node.'
);
}
}