]> git.mxchange.org Git - core.git/blobdiff - framework/main/exceptions/database/local_file/class_SavePathReadProtectedException.php
Continued:
[core.git] / framework / main / exceptions / database / local_file / class_SavePathReadProtectedException.php
index a8db0666b19e506e8e6d485d42acfda0313c6fb4..145d71586d6e2e49d01646e040930774530662fa 100644 (file)
@@ -1,13 +1,16 @@
 <?php
 // Own namespace
-namespace CoreFramework\Deprecated;
+namespace Org\Mxchange\CoreFramework\Deprecated;
+
+// Import framework stuff
+use Org\Mxchange\CoreFramework\Database\DatabaseException;
 
 /**
  * An exception thrown when the save path is read-protected
  *
  * @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
  * @deprecated Please don't use this
@@ -33,7 +36,7 @@ class SavePathReadProtectedException extends DatabaseException {
         * @param       $code           Code number for the exception
         * @return      void
         */
-       public function __construct ($path, $code) {
+       public function __construct (string $path, int $code) {
                // Add a message around the missing class
                $message = sprintf('Path %s is not readable. Please fix your file access rights.', $path);