shlink/module/Core/src/Exception/InvalidUrlException.php

18 lines
442 B
PHP
Raw Normal View History

<?php
2017-10-12 11:13:20 +03:00
declare(strict_types=1);
2016-07-19 19:01:39 +03:00
namespace Shlinkio\Shlink\Core\Exception;
use Throwable;
use function sprintf;
class InvalidUrlException extends RuntimeException
{
public static function fromUrl(string $url, ?Throwable $previous = null): self
{
2018-11-17 21:23:25 +03:00
$code = $previous !== null ? $previous->getCode() : -1;
2017-12-27 18:23:54 +03:00
return new static(sprintf('Provided URL "%s" is not an existing and valid URL', $url), $code, $previous);
}
}