InvalidFileException.php 200 B

123456789101112
  1. <?php
  2. declare(strict_types=1);
  3. namespace Dotenv\Exception;
  4. use InvalidArgumentException;
  5. final class InvalidFileException extends InvalidArgumentException implements ExceptionInterface
  6. {
  7. //
  8. }