blob: 6e878a5858bee1b39c2f13c0223e6a1ed1d88302 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
declare(strict_types=1);
namespace Dotenv\Exception;
use InvalidArgumentException;
final class InvalidFileException extends InvalidArgumentException implements ExceptionInterface
{
//
}
|