Introduced namespaces:
[core.git] / inc / main / exceptions / main / class_DimNotFoundInArrayException.php
index df2cfdf5b8d3e1bfa88f6d686d1a15a3d6f6a15b..c58591b14c1f42ba9388470920db46273035bb03 100644 (file)
@@ -1,4 +1,10 @@
 <?php
+// Own namespace
+namespace CoreFramework\Deprecated;
+
+// Load framework stuff
+use CoreFramework\Generic\FrameworkInterface;
+
 /**
  * An exception thron when dimension entries are not found in an array
  *
@@ -7,7 +13,8 @@
  * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.shipsimu.org
- * 
+ * @deprecated Please don't use this anymore
+ *
  * 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
  * the Free Software Foundation, either version 3 of the License, or
@@ -44,7 +51,5 @@ class DimNotFoundInArrayException extends FrameworkException {
                // Call parent constructor
                parent::__construct($message, $code);
        }
-}
 
-// [EOF]
-?>
+}