X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=framework%2Fmain%2Fexceptions%2Fuser%2Fclass_UsernameMissingException.php;h=aad7c357e26fd199fd8c45c2a15a247644ba9c82;hb=498e6b065ce47804bff4e1073592a2cc8e28f8ef;hp=ff0725a98bed30980e83e20e0bef42d7c228b87f;hpb=4f9cf34b521892cb99fae9b21b92787f3d555b74;p=core.git diff --git a/framework/main/exceptions/user/class_UsernameMissingException.php b/framework/main/exceptions/user/class_UsernameMissingException.php index ff0725a9..aad7c357 100644 --- a/framework/main/exceptions/user/class_UsernameMissingException.php +++ b/framework/main/exceptions/user/class_UsernameMissingException.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 - 2020 Core Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.shipsimu.org * @@ -31,16 +31,16 @@ class UsernameMissingException 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] Username %s was not found.', - $msgArray[0]->__toString(), + $messageArray[0]->__toString(), $this->getLine(), - $msgArray[1] + $messageArray[1] ); // Make sure everything is assigned properly