]> git.mxchange.org Git - shipsimu.git/blobdiff - inc/classes/exceptions/main/class_InvalidCommandException.php
Dummy admin area added, HTML code in PHP scripts rewritten to CSS classes, CSS ids...
[shipsimu.git] / inc / classes / exceptions / main / class_InvalidCommandException.php
index dd36dba0c9071773717b9ef6bd48044ae90ef464..d55a167f90963b7a1a4dd1e81af171d620f1c3b3 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright(c) 2007, 2008 Roland Haeder, this is free software
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, this is free software
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -25,13 +25,13 @@ class InvalidCommandException extends FrameworkException {
        /**
         * The constructor
         *
-        * @param               $message        Message from the exception
-        * @param               $code           Code number for the exception
+        * @param       $message        Message from the exception
+        * @param       $code           Code number for the exception
         * @return      void
         */
        public function __construct (array $msgArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Invalid command <span id=\"exception_reason\">%s (class %s)</span> detected.",
+               $message = sprintf("[%s:%d] Invalid command <span class=\"exception_reason\">%s (class %s)</span> detected.",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1],
@@ -39,7 +39,7 @@ class InvalidCommandException extends FrameworkException {
                );
 
                // Set extra data
-               $this->setExtraData($msgArray[0]->getClassName());
+               $this->setExtraData($msgArray[0]->getClassName().":".$this->getLine());
 
                // Call parent constructor
                parent::__construct($message, $code);