SkuIsNotAssignedToStockException.php 317 B

123456789101112131415
  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\InventoryConfigurationApi\Exception;
  8. use Magento\Framework\Exception\NoSuchEntityException;
  9. class SkuIsNotAssignedToStockException extends NoSuchEntityException
  10. {
  11. }