| 1 | <?php |
||
| 11 | class EmailCheckException extends CheckException |
||
| 12 | { |
||
| 13 | const EXCEPTION_NAME = 'EmailCheck'; |
||
| 14 | |||
| 15 | const CODE_INTERNAL_PROBLE = 8001; |
||
| 16 | const TEXT_INTERNAL_PROBLE = 'Email send internal problem: %s'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param \Exception $e |
||
| 20 | * @return static |
||
| 21 | */ |
||
| 22 | 3 | public static function internalProblem(\Exception $e) |
|
| 26 | } |
||
| 27 |