DocumentValidationException.php 411 B

1234567891011121314151617
  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\DocumentValidationExceptionInterface;
  9. /**
  10. * @api
  11. * @since 100.1.2
  12. */
  13. class DocumentValidationException extends LocalizedException implements DocumentValidationExceptionInterface
  14. {
  15. }