NotificationExceptionInterface.php 279 B

1234567891011121314151617
  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\User\Model\Spi;
  8. /**
  9. * When a notification cannot be sent.
  10. */
  11. interface NotificationExceptionInterface extends \Throwable
  12. {
  13. }