mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-29 16:08:29 +03:00
11 lines
362 B
PHP
11 lines
362 B
PHP
<?php
|
|
namespace Shlinkio\Shlink\Core\Exception;
|
|
|
|
class InvalidUrlException extends RuntimeException
|
|
{
|
|
public static function fromUrl($url, \Exception $previous = null)
|
|
{
|
|
$code = isset($previous) ? $previous->getCode() : -1;
|
|
return new static(sprintf('Provided URL "%s" is not an exisitng and valid URL', $url), $code, $previous);
|
|
}
|
|
}
|