TDoG-Skin/vendor/vlucas/phpdotenv/src/Exception/InvalidEncodingException.php
2024-08-17 19:13:54 +08:00

13 lines
204 B
PHP
Executable File

<?php
declare(strict_types=1);
namespace Dotenv\Exception;
use InvalidArgumentException;
final class InvalidEncodingException extends InvalidArgumentException implements ExceptionInterface
{
//
}