]> git.mxchange.org Git - core.git/blobdiff - inc/main/exceptions/file_directory/class_DirPointerNotOpenedException.php
Continued:
[core.git] / inc / main / exceptions / file_directory / class_DirPointerNotOpenedException.php
index 90ba80d4b5e29ef6ebd4d551c6286e0795e181f8..a4590f4c60c99f9e4194aa442b5026cd80062a4d 100644 (file)
@@ -1,4 +1,7 @@
 <?php
 <?php
+// Own namespace
+namespace CoreFramework\Filesystem;
+
 /**
  * An exception thrown when a directory pointer is not opended
  *
 /**
  * An exception thrown when a directory pointer is not opended
  *
@@ -31,12 +34,10 @@ class DirPointerNotOpenedException extends FrameworkException {
         */
        public function __construct ($path, $code) {
                // Add a message around the missing class
         */
        public function __construct ($path, $code) {
                // Add a message around the missing class
-               $message = sprintf('F&uuml;r den Pfad %s konnte kein Pointer initialisiert werden.', $path);
+               $message = sprintf('No pointer could be initialized for path "%s".', $path);
 
                // Call parent constructor
                parent::__construct($message, $code);
        }
 
                // Call parent constructor
                parent::__construct($message, $code);
        }
-}
 
 
-// [EOF]
-?>
+}