mirror of
https://github.com/shlinkio/shlink.git
synced 2026-03-08 08:13:11 +08:00
11 lines
240 B
PHP
11 lines
240 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\Common\Exception;
|
|
|
|
use InvalidArgumentException as SplInvalidArgumentException;
|
|
|
|
class InvalidArgumentException extends SplInvalidArgumentException implements ExceptionInterface
|
|
{
|
|
}
|