ValidationException.php 183 B

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