shlink/module/Core/src/Exception/InvalidArgumentException.php
2019-10-05 17:26:10 +02:00

11 lines
239 B
PHP

<?php
declare(strict_types=1);
namespace Shlinkio\Shlink\Core\Exception;
use InvalidArgumentException as SplInvalidArgumentException;
class InvalidArgumentException extends SplInvalidArgumentException implements ExceptionInterface
{
}