X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=framework%2Fmain%2Fexceptions%2Fuser%2Fclass_UnexpectedGuestAccountException.php;h=ae29688c2921defd1edabfb14a59ea88fd66b2f1;hp=2525610aebe37067268f4a551b962786698d2f31;hb=refs%2Fheads%2Fmaster;hpb=a60894f1d6ef33613d2d0351075aa07aa257f304 diff --git a/framework/main/exceptions/user/class_UnexpectedGuestAccountException.php b/framework/main/exceptions/user/class_UnexpectedGuestAccountException.php index 2525610a..3341ba56 100644 --- a/framework/main/exceptions/user/class_UnexpectedGuestAccountException.php +++ b/framework/main/exceptions/user/class_UnexpectedGuestAccountException.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 UnexpectedGuestAccountException 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 %s is a guest account.', - $msgArray[0]->__toString(), + $messageArray[0]->__toString(), $this->getLine(), - $msgArray[1] + $messageArray[1] ); // Make sure everything is assigned properly