X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=framework%2Fmain%2Fexceptions%2Fuser%2Fclass_UserEmailMissingException.php;h=f8549dc3a0ab6c9682a004b4a262a9fecc42fa30;hp=38c4cfae873c0b46d8d2a2a32c7111f8718d7c6e;hb=HEAD;hpb=b002c5909aa0f781505dde5414964b0f014cde01 diff --git a/framework/main/exceptions/user/class_UserEmailMissingException.php b/framework/main/exceptions/user/class_UserEmailMissingException.php index 38c4cfae..f8549dc3 100644 --- a/framework/main/exceptions/user/class_UserEmailMissingException.php +++ b/framework/main/exceptions/user/class_UserEmailMissingException.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 UserEmailMissingException 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] User email %s was not found.', - $msgArray[0]->__toString(), + $messageArray[0]->__toString(), $this->getLine(), - $msgArray[1] + $messageArray[1] ); // Make sure everything is assigned properly