summaryrefslogtreecommitdiff
path: root/vendor/vlucas/phpdotenv/src/Exception/ExceptionInterface.php
blob: 1e80f53177bb003b3a6728b1964bedb81a2dd7e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

declare(strict_types=1);

namespace Dotenv\Exception;

use Throwable;

interface ExceptionInterface extends Throwable
{
    //
}