]> git.mxchange.org Git - core.git/blobdiff - framework/main/exceptions/file_directory/class_FileWriteProtectedException.php
Continued:
[core.git] / framework / main / exceptions / file_directory / class_FileWriteProtectedException.php
index 71edcf01a45a6ae374d0113f53ea6d4c5e2ef34d..7e40202035cdcaaa3c23d671f7702febee985dd8 100644 (file)
@@ -1,16 +1,19 @@
 <?php
 // Own namespace
-namespace CoreFramework\FileSystem;
+namespace Org\Mxchange\CoreFramework\Filesystem;
 
 // Import framework stuff
-use CoreFramework\Generic\FrameworkException;
+use Org\Mxchange\CoreFramework\Generic\FrameworkException;
+
+// Import SPL stuff
+use \SplFileInfo;
 
 /**
  * An exception thrown when a file could not be written.
  *
  * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2023 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.shipsimu.org
  *
@@ -31,13 +34,13 @@ class FileWriteProtectedException extends FrameworkException {
        /**
         * The constructor
         *
-        * @param       $fqfn   Full-qualified file name of (maybe) missing file
+        * @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, int $code) {
                // Add a message around the missing class
-               $message = sprintf('File %s cannot be written. Please check file and/or directory permissions.', $fqfn);
+               $message = sprintf('File %s cannot be written. Please check file and/or directory permissions.', $infoInstance->getPathname());
 
                // Call parent constructor
                parent::__construct($message, $code);