]> git.mxchange.org Git - core.git/blobdiff - inc/main/exceptions/database/local_file/class_SavePathIsEmptyException.php
Introduced namespaces:
[core.git] / inc / main / exceptions / database / local_file / class_SavePathIsEmptyException.php
index 742558ee82119513d3afad33f603e6b50f131608..d188f15949f85e0863e6745c41d273f4e40989b6 100644 (file)
@@ -1,12 +1,19 @@
 <?php
+// Own namespace
+namespace CoreFramework\Deprecated;
+
+// Load framework stuff
+use CoreFramework\Generic\FrameworkInterface;
+
 /**
  * An exception thrown when the save path string is empty
  *
  * @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
+ * @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
@@ -39,7 +46,5 @@ class SavePathIsEmptyException extends DatabaseException {
                // Call parent constructor
                parent::__construct($message, $code);
        }
-}
 
-// [EOF]
-?>
+}