]> git.mxchange.org Git - core.git/blobdiff - inc/main/exceptions/main/class_InvalidObjectException.php
Introduced namespaces:
[core.git] / inc / main / exceptions / main / class_InvalidObjectException.php
index 42deb3d5629bec87f192a7f69cea4a51e240d2bd..7ce7a9374099ef667d5b5f5a0394bc7e90351fe8 100644 (file)
@@ -1,4 +1,10 @@
 <?php
+// Own namespace
+namespace CoreFramework\Deprecated;
+
+// Load framework stuff
+use CoreFramework\Generic\FrameworkInterface;
+
 /**
  * An exception thrown when an instance variable instances a non-object 
  *
@@ -7,6 +13,7 @@
  * @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 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
@@ -39,7 +46,5 @@ class InvalidObjectException extends FrameworkException {
                // Call parent constructor
                parent::__construct($message, $code);
        }
-}
 
-// [EOF]
-?>
+}