Exception.php 380 B

1234567891011121314151617181920
  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. * @author William Durand <william.durand1@gmail.com>
  13. */
  14. interface Exception extends \Throwable
  15. {
  16. }