OutOfBounds.php 387 B

123456789101112131415161718
  1. <?php
  2. /*
  3. * This file is part of the Geocoder package.
  4. * For the full copyright and license information, please view the LICENSE
  5. * file that was distributed with this source code.
  6. *
  7. * @license MIT License
  8. */
  9. namespace Geocoder\Exception;
  10. /**
  11. * @author Tobias Nyholm <tobias.nyholm@gmail.com>
  12. */
  13. final class OutOfBounds extends \OutOfBoundsException implements Exception
  14. {
  15. }