1 | <?php |
||
9 | class NotificationNotSentException extends Exception |
||
10 | { |
||
11 | /** |
||
12 | * @var Notification |
||
13 | */ |
||
14 | private $notification; |
||
15 | |||
16 | /** |
||
17 | * @param Notification $notification |
||
18 | * @param Throwable|null $previous |
||
19 | */ |
||
20 | 1 | public function __construct(Notification $notification, Throwable $previous = null) |
|
33 | |||
34 | /** |
||
35 | * @return Notification |
||
36 | */ |
||
37 | public function notification(): Notification |
||
41 | } |
||
42 |