X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=framework%2Fmain%2Fexceptions%2Fuser%2Fclass_UserPasswordMismatchException.php;h=d392551759ac9376f4c563a148e38ff5a552a69a;hp=c039a3b4abe2d21d5fc54b79a878f27f9feab7fd;hb=refs%2Fheads%2Fmaster;hpb=a60894f1d6ef33613d2d0351075aa07aa257f304 diff --git a/framework/main/exceptions/user/class_UserPasswordMismatchException.php b/framework/main/exceptions/user/class_UserPasswordMismatchException.php index c039a3b4..fa497fe7 100644 --- a/framework/main/exceptions/user/class_UserPasswordMismatchException.php +++ b/framework/main/exceptions/user/class_UserPasswordMismatchException.php @@ -10,7 +10,7 @@ use Org\Mxchange\CoreFramework\Generic\FrameworkException; * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2023 Core Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.shipsimu.org * @@ -31,16 +31,16 @@ class UserPasswordMismatchException extends FrameworkException { /** * The super constructor for all exceptions * - * @param $msgArray The non-optional message for the exception + * @param $messageArray The non-optional message for the exception * @param $code An optional code for better debugging * @return void */ - public function __construct (array $msgArray, $code = 0) { + public function __construct (array $messageArray, $code = 0) { // Create the message $message = sprintf('[%s:%d] Supplied password for user %s did not match with stored password.', - $msgArray[0]->__toString(), + $messageArray[0]->__toString(), $this->getLine(), - $msgArray[1]->getUserName() + $messageArray[1]->getUserName() ); // Make sure everything is assigned properly