blob: ee836a73b3cef734cc28b9911ebd7756048ea834 (
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 InvalidPathException extends InvalidArgumentException implements ExceptionInterface
{
//
}
|