Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. FailedMessageEvent.php

class FailedMessageEvent

@author Fabien Potencier <fabien@symfony.com>

Hierarchy

  • class \Symfony\Contracts\EventDispatcher\Event implements \Psr\EventDispatcher\StoppableEventInterface
    • class \Symfony\Component\Mailer\Event\FailedMessageEvent extends \Symfony\Contracts\EventDispatcher\Event

Expanded class hierarchy of FailedMessageEvent

1 file declares its use of FailedMessageEvent
AbstractTransport.php in vendor/symfony/mailer/Transport/AbstractTransport.php

File

vendor/symfony/mailer/Event/FailedMessageEvent.php, line 20

Namespace

Symfony\Component\Mailer\Event
View source
final class FailedMessageEvent extends Event {
    public function __construct(RawMessage $message, \Throwable $error) {
    }
    public function getMessage() : RawMessage {
        return $this->message;
    }
    public function getError() : \Throwable {
        return $this->error;
    }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title Overrides
Event::$propagationStopped private property
Event::isPropagationStopped public function Is propagation stopped? Overrides StoppableEventInterface::isPropagationStopped
Event::stopPropagation public function Stops the propagation of the event to further event listeners. 1
FailedMessageEvent::getError public function
FailedMessageEvent::getMessage public function
FailedMessageEvent::__construct public function
RSS feed
Powered by Drupal