mirror of
https://github.com/shlinkio/shlink.git
synced 2026-03-06 07:13:11 +08:00
17 lines
440 B
PHP
17 lines
440 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\Core\Exception;
|
|
|
|
use Throwable;
|
|
use function sprintf;
|
|
|
|
class InvalidUrlException extends RuntimeException
|
|
{
|
|
public static function fromUrl(string $url, Throwable $previous = null): self
|
|
{
|
|
$code = $previous !== null ? $previous->getCode() : -1;
|
|
return new static(sprintf('Provided URL "%s" is not an existing and valid URL', $url), $code, $previous);
|
|
}
|
|
}
|