1 | <?php |
||
24 | class InvalidEmailAddress extends RuntimeException implements ChainMailException |
||
25 | { |
||
26 | |||
27 | /** |
||
28 | * Create an InvalidEmailAddress exception based on a specific email. |
||
29 | * |
||
30 | * @param string $email Email that failed validation. |
||
31 | * |
||
32 | * @return static |
||
33 | */ |
||
34 | 1 | public static function from($email) |
|
38 | } |
||
39 |