1 | <?php namespace Qualia\Exceptions; |
||
3 | class EmailExistsException extends RequestException |
||
4 | { |
||
5 | /** |
||
6 | * @var array |
||
7 | */ |
||
8 | private $entryId; |
||
9 | |||
10 | 7 | public function __construct($entryId) |
|
15 | |||
16 | /** |
||
17 | * Returns ID of the entry that has email you already submitted |
||
18 | * |
||
19 | * @return array |
||
20 | */ |
||
21 | 6 | public function getEntryId() |
|
25 | } |