Updated domain without a dash :(
[core.git] / inc / classes / exceptions / main / class_DimNotFoundInArrayException.php
index 679dce4ffdc74dd7db6f6b5485be2344974488f4..0bf7297b84b04495372b09512c15a10aba36c0d6 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * An exception thron when dimension entries are not found in an array
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009, 2010 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @link               http://www.shipsimu.org
  * 
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -32,13 +32,13 @@ class DimNotFoundInArrayException extends FrameworkException {
        public function __construct (FrameworkInterface $class, $code) {
                if (is_object($class)) {
                        // Add a message around the missing class
-                       $message = sprintf("[%s:%d] Dimensions not found in array, array is invalid!",
+                       $message = sprintf('[%s:%d] Dimensions not found in array, array is invalid!',
                                $class->__toString(),
                                $this->getLine()
                        );
                } else {
                        // No class given
-                       $message = sprintf("Please provide a class for <span class=\"exception_reason\">%s</span>", __CLASS__);
+                       $message = sprintf('Please provide a class for %s', __CLASS__);
                }
 
                // Call parent constructor