| 1 | <?php |
||
| 14 | class UserPasswordValidationException extends InvalidArgumentException |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * Generates: "Argument '{$argumentName}' is invalid: Password doesn't match the following rules: {X}, {Y}, {Z}". |
||
| 18 | * |
||
| 19 | * @param string $argumentName |
||
| 20 | * @param array $errors |
||
| 21 | * @param Exception|null $previous |
||
| 22 | */ |
||
| 23 | public function __construct(string $argumentName, array $errors, Exception $previous = null) |
||
| 31 | } |
||
| 32 |