1<?php
2
3declare(strict_types=1);
4
5namespace Nyholm\Dsn\Exception;
6
7/**
8 * Base Exception interface.
9 *
10 * @author Tobias Nyholm <tobias.nyholm@gmail.com>
11 */
12interface ExceptionInterface
13{
14}
15