MessageLockException.php 401 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\MessageQueue;
  7. use Magento\Framework\Exception\LocalizedException;
  8. /**
  9. * Class MessageLockException to be thrown when a message being processed is already in the lock table.
  10. *
  11. * @api
  12. * @since 102.0.1
  13. */
  14. class MessageLockException extends LocalizedException
  15. {
  16. }