Files
panel/app/Exceptions/Service/Server/Allocation/NoAvailableDiskInterfaceException.php
2023-02-26 23:04:32 +00:00

13 lines
332 B
PHP

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