QuotaExceeded.php 487 B

12345678910111213141516171819202122
  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 no longer may access the API because your quota has exceeded.
  13. *
  14. * @author Max V. Kovrigovich <mvk@tut.by>
  15. */
  16. final class QuotaExceeded extends \RuntimeException implements Exception
  17. {
  18. }