Files
shlink/src/Exception/InvalidUrlException.php

12 lines
362 B
PHP

<?php
namespace Acelaya\UrlShortener\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);
}
}