mirror of
https://github.com/ConvoyPanel/panel.git
synced 2026-06-24 10:23:47 +08:00
13 lines
332 B
PHP
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.');
|
|
}
|
|
} |