]> git.mxchange.org Git - core.git/blobdiff - inc/main/exceptions/main/class_MissingMethodException.php
Renamed Registry -> GenericRegistry to make it clear that this registry does
[core.git] / inc / main / exceptions / main / class_MissingMethodException.php
index b033837c9d0d854d58228e02197055f11fee1ff4..c63e6ef711e474eb3600765a83325d510e281c61 100644 (file)
@@ -1,7 +1,4 @@
 <?php
-// Own namespace
-namespace CoreFramework\Object;
-
 /**
  * An exception thrown when a method is missing, this exception is used in
  * guest/user login classes and thrown when a factory method is absend. I think
@@ -10,7 +7,7 @@ namespace CoreFramework\Object;
  *
  * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2016 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.shipsimu.org
  * @todo               Try to rewrite user/guest login classes and mark this exception as deprecated
@@ -39,7 +36,7 @@ class MissingMethodException extends FrameworkException {
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
-               $message = sprintf('[%s:%d] This class has no method %s().',
+               $message = sprintf('[%s:%d] This class has no method <u>%s()</u>.',
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1]