ExtensionNotLoaded.php 456 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. * When a required PHP extension is missing.
  13. *
  14. * @author Antoine Corcy <contact@sbin.dk>
  15. */
  16. final class ExtensionNotLoaded extends \RuntimeException implements Exception
  17. {
  18. }