mirror of
https://github.com/shlinkio/shlink.git
synced 2026-02-28 12:13:13 +08:00
17 lines
350 B
PHP
17 lines
350 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\Common\Exception;
|
|
|
|
use Throwable;
|
|
|
|
use function sprintf;
|
|
|
|
class WrongIpException extends RuntimeException
|
|
{
|
|
public static function fromIpAddress($ipAddress, Throwable $prev = null): self
|
|
{
|
|
return new self(sprintf('Provided IP "%s" is invalid', $ipAddress), 0, $prev);
|
|
}
|
|
}
|