| 1 | <?php |
||
| 7 | class InvalidNewsletterList extends Exception |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @return static |
||
| 11 | */ |
||
| 12 | public static function noListsDefined() |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param string $name |
||
| 19 | * |
||
| 20 | * @return static |
||
| 21 | */ |
||
| 22 | public static function noListWithName($name) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param $defaultListName |
||
| 29 | * |
||
| 30 | * @return static |
||
| 31 | */ |
||
| 32 | public static function defaultListDoesNotExist($defaultListName) |
||
| 36 | } |
||
| 37 |