]> git.mxchange.org Git - core.git/blobdiff - inc/main/exceptions/file_directory/class_PathIsEmptyException.php
Introduced namespaces:
[core.git] / inc / main / exceptions / file_directory / class_PathIsEmptyException.php
index cfbbd6879e36c761e3e50c29a7c39be23a9d2217..569f0714f41b1d8e1957a8cd75db7b9f4ea49b4e 100644 (file)
@@ -1,4 +1,10 @@
 <?php
+// Own namespace
+namespace CoreFramework\Filesystem;
+
+// Load framework stuff
+use CoreFramework\Generic\FrameworkInterface;
+
 /**
  * An exception thrown when the path string is empty
  *
@@ -39,7 +45,5 @@ class PathIsEmptyException extends FrameworkException {
                // Call parent constructor
                parent::__construct($message, $code);
        }
-}
 
-// [EOF]
-?>
+}