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