| 1 | <?php |
||
| 8 | class NotificationNotFoundException extends Exception |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var NotificationId |
||
| 12 | */ |
||
| 13 | private $notificationId; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * NotificationNotFoundException constructor. |
||
| 17 | * @param NotificationId $notificationId |
||
| 18 | */ |
||
| 19 | 1 | public function __construct(NotificationId $notificationId) |
|
| 29 | |||
| 30 | /** |
||
| 31 | * @return NotificationId |
||
| 32 | */ |
||
| 33 | 1 | public function notificationId(): NotificationId |
|
| 37 | } |
||
| 38 |