Elgg  Version 4.3
InvalidPasswordLengthException.php
Go to the documentation of this file.
1 <?php
2 
4 
6 
13 
17  public function __construct(string $message = '', int $code = 0, \Throwable $previous = null) {
18  if (!$message) {
19  $message = elgg_echo('Security:InvalidPasswordLengthException', [elgg_get_config('min_password_length')]);
20  }
21 
22  parent::__construct($message, $code, $previous);
23  }
24 }
__construct(string $message= '', int $code=0,\Throwable $previous=null)
{}
elgg_echo($message_key, array $args=[], $language="")
Elgg language module Functions to manage language and translations.
Definition: languages.php:18
Throw when a Security Exception occurs.
Indicate a password string doesn&#39;t meet the minimal length requirements.
elgg_get_config($name, $default=null)
Get an Elgg configuration value.