]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/io/class_FrameworkFileOutputPointer.php
Copyright updated
[core.git] / inc / classes / main / io / class_FrameworkFileOutputPointer.php
index bc69bea5ea240eb053a29c4ae0b60666cfdb2414..b76281b57d750b6007ed1e318f45a10f5b4ba5dd 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -61,23 +61,22 @@ class FrameworkFileOutputPointer extends BaseFrameworkSystem {
         * @param       $fileName       The file name we shall pass to fopen()
         * @param       $mode           The output mode ('w', 'a' are valid)
         * @throws      FileIsEmptyException    If the provided file name is empty.
-        * @throws      FilePointerNotOpened    If fopen() returns not a file
-        *                                                                      resource
+        * @throws      FileIoException         If fopen() returns not a file resource
         * @return      void
         */
-       public final static function createFrameworkFileOutputPointer ($fileName, $mode) {
+       public static final function createFrameworkFileOutputPointer ($fileName, $mode) {
                // Some pre-sanity checks...
                if (is_null($fileName)) {
                        // No filename given
                        throw new FileIsEmptyException(null, self::EXCEPTION_UNEXPECTED_EMPTY_STRING);
-               }
+               } // END - if
 
                // Try to open a handler
                $filePointer = @fopen($fileName, $mode);
                if (($filePointer === null) || ($filePointer === false)) {
                        // Something bad happend
-                       throw new FilePointerNotOpenedException ($fileName, self::EXCEPTION_FILE_POINTER_INVALID);
-               }
+                       throw new FileIoException ($fileName, self::EXCEPTION_FILE_POINTER_INVALID);
+               } // END - if
 
                // Create new instance
                $pointerInstance = new FrameworkFileOutputPointer();