MediaWiki master
PasswordError.php
Go to the documentation of this file.
1<?php
7declare( strict_types = 1 );
8
9namespace MediaWiki\Password;
10
11use RuntimeException;
12
19class PasswordError extends RuntimeException {
20}
21
23class_alias( PasswordError::class, 'PasswordError' );
Show an error when any operation involving passwords fails to run.