| 1 | <?php |
||
| 7 | class IllegalMailbox extends InvalidEmail |
||
| 8 | { |
||
| 9 | const CODE = 995; |
||
| 10 | const REASON = "The mailbox is illegal."; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var int |
||
| 14 | */ |
||
| 15 | private $responseCode; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * IllegalMailbox constructor. |
||
| 19 | * |
||
| 20 | * @param int $responseCode |
||
| 21 | */ |
||
| 22 | 3 | public function __construct($responseCode) |
|
| 28 | } |
||
| 29 |