CouldNotInvoiceException.php 439 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Sales\Exception;
  7. use Magento\Framework\Exception\LocalizedException;
  8. use Magento\Sales\Api\Exception\CouldNotInvoiceExceptionInterface;
  9. /**
  10. * Class CouldNotInvoiceException
  11. *
  12. * @api
  13. * @since 100.1.2
  14. */
  15. class CouldNotInvoiceException extends LocalizedException implements CouldNotInvoiceExceptionInterface
  16. {
  17. }