| 1 | <?php |
||
| 12 | class InvalidRecipientException extends DispatchMessageException |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * Collection of invalid recipient devices |
||
| 16 | * |
||
| 17 | * @var \ArrayIterator |
||
| 18 | */ |
||
| 19 | private $recipientCollection; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param string $message |
||
| 23 | * @param \ArrayIterator $recipients |
||
| 24 | */ |
||
| 25 | public function __construct($message, \ArrayIterator $recipients) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @return \Zbox\UnifiedPush\Message\RecipientDevice |
||
| 34 | */ |
||
| 35 | public function getRecipientDevice() |
||
| 46 | } |
||
| 47 |