X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=inline;f=inc%2Fclasses%2Fexceptions%2Fcontroller%2Fclass_DefaultControllerException.php;h=228d20be744be41dc30be7bb957992cc4d3b2965;hb=c3c6b01a2a1185c9a047fd7726f5657638b8191c;hp=c718c00bb649ae2dd5649db1b65e41e3318da13d;hpb=361e6320e50a8bb1a3ccb675388b8042361669ae;p=core.git diff --git a/inc/classes/exceptions/controller/class_DefaultControllerException.php b/inc/classes/exceptions/controller/class_DefaultControllerException.php index c718c00b..228d20be 100644 --- a/inc/classes/exceptions/controller/class_DefaultControllerException.php +++ b/inc/classes/exceptions/controller/class_DefaultControllerException.php @@ -4,7 +4,7 @@ * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007 - 2009 Roland Haeder, this is free software + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.ship-simu.org * @@ -31,13 +31,13 @@ class DefaultControllerException extends FrameworkException { */ public function __construct(ControllerResolver $resolverInstance, $code) { // Prepare the message - $message = sprintf("[%s:%d] Cannot resolv default controller. Maybe missing?", + $message = sprintf("[%s:%d] Cannot resolve default controller. Maybe missing?", $resolverInstance->__toString(), $this->getLine() ); // Set extra data - $this->setExtraData($resolverInstance->getClassName().":".$this->getLine()); + $this->setExtraData($resolverInstance->getClassName().':'.$this->getLine()); // Call parent contructor with message parent::__construct($message, $code);