Rewritten:
[core.git] / framework / main / exceptions / file_directory / class_PathWriteProtectedException.php
index 76078d941f1d9da524c2b003e5a9a9fb1f490f85..2e4da8391e648764b81c73a707dfe23af9e5c8cd 100644 (file)
@@ -1,10 +1,14 @@
 <?php
 // Own namespace
-namespace CoreFramework\Deprecated;
+namespace CoreFramework\Filesystem;
 
 // Import framework stuff
+use CoreFramework\Filesystem\PathWriteProtectedException;
 use CoreFramework\Generic\FrameworkException;
 
+// Import SPL stuff
+use \SplFileInfo;
+
 /**
  * An exception thrown when a path cannot be written to.
  *
@@ -13,7 +17,6 @@ use CoreFramework\Generic\FrameworkException;
  * @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
@@ -28,17 +31,17 @@ use CoreFramework\Generic\FrameworkException;
  * You should have received a copy of the GNU General Public License
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
-class FileWriteProtectedException extends FrameworkException {
+class PathWriteProtectedException extends FrameworkException {
        /**
         * The constructor
         *
-        * @param       $fqfn   Full-qualified file name
+        * @param       $infoInstance   An instance of a SplFileInfo class
         * @param       $code   Code number for the exception
         * @return      void
         */
-       public function __construct ($fqfn, $code) {
+       public function __construct (SplFileInfo $infoInstance, $code) {
                // Add a message around the missing class
-               $message = sprintf('Path %s cannot be written to. Please check permissions.', dirname($fqfn));
+               $message = sprintf('Path "%s" cannot be written to. Please check permissions.', $infoInstance->getPath());
 
                // Call parent constructor
                parent::__construct($message, $code);