NotificatorException.php 416 B

1234567891011121314151617181920
  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;
  8. use Magento\Framework\Exception\MailException;
  9. use Magento\User\Model\Spi\NotificationExceptionInterface;
  10. /**
  11. * When notificator cannot send an email.
  12. */
  13. class NotificatorException extends MailException implements NotificationExceptionInterface
  14. {
  15. }