X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=framework%2Fmain%2Fexceptions%2Fmain%2Fclass_NoClassException.php;h=5003dd5880c8d7bc8329528724076154bde56a9e;hp=61f275dcc1eade921213e47b9f8cef24ee5f9a8e;hb=HEAD;hpb=a60894f1d6ef33613d2d0351075aa07aa257f304 diff --git a/framework/main/exceptions/main/class_NoClassException.php b/framework/main/exceptions/main/class_NoClassException.php index 61f275dc..f78ebfda 100644 --- a/framework/main/exceptions/main/class_NoClassException.php +++ b/framework/main/exceptions/main/class_NoClassException.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,20 +31,20 @@ class NoClassException extends FrameworkException { /** * The constructor * - * @param $msgArray Message from the exception + * @param $messageArray Message from the exception * @param $code Code number for the exception * @return void */ - public function __construct (array $msgArray, $code) { + public function __construct (array $messageArray, int $code) { // Add a message around the missing class $message = sprintf('[%s:%d] Class %s not found.', - $msgArray[0]->__toString(), + $messageArray[0]->__toString(), $this->getLine(), - $msgArray[1] + $messageArray[1] ); // Set extra data - $this->setExtraData($msgArray[1]); + $this->setExtraData($messageArray[1]); // Call parent constructor parent::__construct($message, $code);