mirror of
https://github.com/ConvoyPanel/panel.git
synced 2026-06-24 02:16:19 +08:00
16 lines
358 B
PHP
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.',
|
|
);
|
|
}
|
|
}
|