X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=framework%2Fmain%2Fexceptions%2Factions%2Fclass_InvalidActionException.php;h=dc0669f943802f212947acbbd4fd0919a86f2b41;hp=8b709c6f7a348bf687f256f2f3f794846921aad3;hb=HEAD;hpb=a60894f1d6ef33613d2d0351075aa07aa257f304 diff --git a/framework/main/exceptions/actions/class_InvalidActionException.php b/framework/main/exceptions/actions/class_InvalidActionException.php index 8b709c6f..4b85db12 100644 --- a/framework/main/exceptions/actions/class_InvalidActionException.php +++ b/framework/main/exceptions/actions/class_InvalidActionException.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,17 +31,17 @@ class InvalidActionException extends FrameworkException { /** * The super constructor for all exceptions * - * @param $msgArray An array with message parts + * @param $messageArray An array with message parts * @param $code An optional code for better debugging * @return void */ - public function __construct (array $msgArray, $code) { + public function __construct (array $messageArray, int $code) { // Prepare the message $message = sprintf('[%s:%d] Cannot resolve action %s (%s).', - $msgArray[0]->__toString(), + $messageArray[0]->__toString(), $this->getLine(), - $msgArray[1], - $msgArray[0]->getClassName() + $messageArray[1], + $messageArray[0]->getClassName() ); // Call parent contructor with message