| 1 | <?php |
||
| 11 | class UnvalidNotificationException extends Exception |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var Notification |
||
| 15 | */ |
||
| 16 | public $notification; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * UnvalidNotificationException constructor. |
||
| 20 | * @param Notification $notification |
||
| 21 | */ |
||
| 22 | public function __construct(Notification $notification) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @return Notification |
||
| 31 | */ |
||
| 32 | public function getNotification() |
||
| 36 | } |
||
| 37 |