MediaWiki master
PasswordError.php
Go to the documentation of this file.
1<?php
21declare( strict_types = 1 );
22
23namespace MediaWiki\Password;
24
25use RuntimeException;
26
33class PasswordError extends RuntimeException {
34}
35
37class_alias( PasswordError::class, 'PasswordError' );
Show an error when any operation involving passwords fails to run.