mirror of
https://github.com/shlinkio/shlink.git
synced 2026-03-07 07:43:12 +08:00
9 lines
174 B
PHP
9 lines
174 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\Core\Exception;
|
|
|
|
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
|
|
{
|
|
}
|