NoSuchDistanceProviderException.php 421 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. declare(strict_types=1);
  7. namespace Magento\InventoryDistanceBasedSourceSelectionApi\Exception;
  8. use Magento\Framework\Exception\LocalizedException;
  9. /**
  10. * Exception to be thrown when a non existing distance provider is requested
  11. *
  12. * @api
  13. */
  14. class NoSuchDistanceProviderException extends LocalizedException
  15. {
  16. }