xref: /plugin/elasticsearch/vendor/nyholm/dsn/src/Exception/InvalidArgumentException.php (revision a57ade100651d77ef01b27ebd98c86a7dacd62e7)
1<?php
2
3declare(strict_types=1);
4
5namespace Nyholm\Dsn\Exception;
6
7/**
8 * Base InvalidArgumentException.
9 */
10class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
11{
12}
13