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

14 lines
286 B
PHP

<?php
namespace Convoy\Exceptions\Service\Server\Allocation;
use Convoy\Exceptions\DisplayException;
class IsoAlreadyUnmountedException extends DisplayException
{
public function __construct()
{
parent::__construct('The requested ISO is already unmounted.');
}
}