| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | class MailerException extends \Exception |
||
| 24 | { |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param string $name |
||
| 28 | * @return MailerException |
||
| 29 | * @throws LangException |
||
| 30 | */ |
||
| 31 | public static function unsupportedAdapter(string $name): MailerException |
||
| 34 | } |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @param string $error |
||
| 38 | * @return MailerException |
||
| 39 | */ |
||
| 40 | public static function unableToSend(string $error): MailerException |
||
| 46 |