]> git.mxchange.org Git - core.git/blobdiff - inc/main/exceptions/actions/class_InvalidActionException.php
renamed lib-local.php -> lib-lfdb.php because it really loads the "legendary"
[core.git] / inc / main / exceptions / actions / class_InvalidActionException.php
index dcb79f50a2bb810a8a603a6c6d389e7b55c9fcfe..f20173447721b61744535bc4af42e1837faad55e 100644 (file)
@@ -1,10 +1,16 @@
 <?php
+// Own namespace
+namespace CoreFramework\Action;
+
+// Import framework stuff
+use CoreFramework\Generic\FrameworkException;
+
 /**
  * This exception is thrown when a requested action is invalid
  *
  * @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
  *
@@ -41,7 +47,5 @@ class InvalidActionException extends FrameworkException {
                // Call parent contructor with message
                parent::__construct($message, $code);
        }
-}
 
-// [EOF]
-?>
+}