UnsupportedOperation.php 564 B

1234567891011121314151617181920212223
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4. * This file is part of the Geocoder package.
  5. * For the full copyright and license information, please view the LICENSE
  6. * file that was distributed with this source code.
  7. *
  8. * @license MIT License
  9. */
  10. namespace Geocoder\Exception;
  11. /**
  12. * Thrown when you are trying to use a Provider for something it does not support. Example if you trying to reverse
  13. * geocode an IP address.
  14. *
  15. * @author William Durand <william.durand1@gmail.com>
  16. */
  17. final class UnsupportedOperation extends InvalidArgument implements Exception
  18. {
  19. }