mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-29 16:08:29 +03: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
|
||
|
{
|
||
|
}
|