]> git.mxchange.org Git - core.git/blobdiff - inc/main/exceptions/main/class_IndexOutOfBoundsException.php
Continued:
[core.git] / inc / main / exceptions / main / class_IndexOutOfBoundsException.php
index 458e70f029cdea684f63bdd6aaba4d8d5ef80be3..90a7cc813acc3ae482389848fc2766def994bb3c 100644 (file)
@@ -1,10 +1,16 @@
 <?php
+// Own namespace
+namespace CoreFramework\Array;
+
+// Import framework stuff
+use CoreFramework\Generic\FrameworkException;
+
 /**
  * An exception thrown when an array index is out of bounds
  *
  * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Core Developer Team
+ * @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
  *
@@ -38,7 +44,5 @@ class IndexOutOfBoundsException extends FrameworkException {
                // Call parent constructor
                parent::__construct($message, $code);
        }
-}
 
-// [EOF]
-?>
+}