PermissionRequiredException.php 217 B

123456789101112
  1. <?php
  2. declare(strict_types=1);
  3. namespace MaxMind\Exception;
  4. /**
  5. * This exception is thrown when the service requires permission to access.
  6. */
  7. class PermissionRequiredException extends InvalidRequestException
  8. {
  9. }