mirror of
https://github.com/ConvoyPanel/panel.git
synced 2026-06-24 02:16:19 +08:00
14 lines
295 B
PHP
14 lines
295 B
PHP
<?php
|
|
|
|
namespace Convoy\Exceptions\Service\Node\IsoLibrary;
|
|
|
|
use Convoy\Exceptions\DisplayException;
|
|
|
|
class InvalidIsoLinkException extends DisplayException
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct('The ISO link provided is either unreachable or invalid.');
|
|
}
|
|
}
|