| 1 | <?php |
||
| 11 | class EmailSendCheckException extends EmailCheckException |
||
| 12 | { |
||
| 13 | const EXCEPTION_NAME = 'EmailSendCheck'; |
||
| 14 | |||
| 15 | const CODE_DOES_NOT_SEND = 8002; |
||
| 16 | const TEXT_DOES_NOT_SEND = 'Does not send email to:%s'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param array $subjects |
||
| 20 | * @return EmailSendCheckException |
||
| 21 | */ |
||
| 22 | 2 | public static function doesNotSendMessage($subjects) |
|
| 26 | } |
||
| 27 |