Files
panel/app/Exceptions/Service/Server/Allocation/NoAvailableDiskInterfaceException.php
2024-03-04 15:14:12 -06:00

16 lines
358 B
PHP

<?php
namespace Convoy\Exceptions\Service\Server\Allocation;
use Convoy\Exceptions\DisplayException;
class NoAvailableDiskInterfaceException extends DisplayException
{
public function __construct()
{
parent::__construct(
'There is no available disk interface on the virtual machine to satisfy the request.',
);
}
}